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 /unicode/unicode.vpc | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'unicode/unicode.vpc')
| -rw-r--r-- | unicode/unicode.vpc | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/unicode/unicode.vpc b/unicode/unicode.vpc new file mode 100644 index 0000000..9c90cf0 --- /dev/null +++ b/unicode/unicode.vpc @@ -0,0 +1,43 @@ +//----------------------------------------------------------------------------- +// UNICODE.VPC +// +// Project Script +//----------------------------------------------------------------------------- + +$Macro SRCDIR ".." +$Macro OUTBINDIR "$SRCDIR\..\game\bin" + +$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc" + +$Configuration "Debug" +{ + $Compiler + { + $PreprocessorDefinitions "$BASE;UNICODE_EXPORTS" + } +} + +$Configuration "Release" +{ + $Compiler + { + $PreprocessorDefinitions "$BASE;UNICODE_EXPORTS" + } + + $Linker + { + $AdditionalDependencies "$BASE unicows.lib" + + $SystemLibraries "iconv;z" [$OSXALL] + + $SystemLibraries "rt" [$LINUXALL] + } +} + +$Project "Unicode" +{ + $Folder "Source Files" + { + $File "unicode.cpp" + } +} |