diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /utils/xbox/FontMaker/fontmaker.vpc | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'utils/xbox/FontMaker/fontmaker.vpc')
| -rw-r--r-- | utils/xbox/FontMaker/fontmaker.vpc | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/utils/xbox/FontMaker/fontmaker.vpc b/utils/xbox/FontMaker/fontmaker.vpc new file mode 100644 index 0000000..8774386 --- /dev/null +++ b/utils/xbox/FontMaker/fontmaker.vpc @@ -0,0 +1,68 @@ +//----------------------------------------------------------------------------- +// FONTMAKER.VPC +// +// Project Script +//----------------------------------------------------------------------------- + +$Macro SRCDIR "..\..\.." +$Macro OUTBINDIR "$SRCDIR\devtools\bin" + +$Include "$SRCDIR\vpc_scripts\source_exe_win_win32_base.vpc" + +$Configuration +{ + $Compiler + { + $EnableC++Exceptions "Yes (/EHsc)" + } + + $Linker + { + $AdditionalDependencies "htmlhelp.lib" + } +} + + +$Project "FontMaker" +{ + $Folder "Source Files" + { + -$File "$SRCDIR\public\tier0\memoverride.cpp" + + $File "FontMaker.cpp" + $File "FontMakerWnd.cpp" + $File "Glyphs.cpp" + $File "..\toollib\piclib.cpp" + $File "..\toollib\scriplib.cpp" + $File "Stdafx.cpp" + { + $Configuration + { + $Compiler + { + $Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)" + } + } + } + + $File "..\toollib\toollib.cpp" + } + + $Folder "Resource Files" + { + $File "FontMaker.ico" + $File "FontMaker.rc" + $File "resource.h" + } + + $Folder "Header Files" + { + $File "..\..\..\public\BitmapFontFile.h" + $File "FontMaker.h" + $File "Glyphs.h" + $File "..\toollib\piclib.h" + $File "..\toollib\scriplib.h" + $File "Stdafx.h" + $File "..\toollib\toollib.h" + } +} |