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 /dedicated_main/dedicated_main.vpc | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'dedicated_main/dedicated_main.vpc')
| -rw-r--r-- | dedicated_main/dedicated_main.vpc | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dedicated_main/dedicated_main.vpc b/dedicated_main/dedicated_main.vpc new file mode 100644 index 0000000..e0ede2c --- /dev/null +++ b/dedicated_main/dedicated_main.vpc @@ -0,0 +1,43 @@ +//----------------------------------------------------------------------------- +// DEDICATED_MAIN.VPC +// +// Project Script +//----------------------------------------------------------------------------- + +$Macro SRCDIR ".." +$Macro OUTBINDIR "$SRCDIR\..\game" +$Macro OUTBINNAME "srcds" [$WINDOWS||$X360] +$Macro OUTBINNAME "srcds_osx" [$OSXALL] +$Macro OUTBINNAME "srcds_linux" [$LINUXALL] + +$Include "$SRCDIR\vpc_scripts\source_exe_base.vpc" +$Include "$SRCDIR\tier0\tier0_exclude.vpc" +$Include "$SRCDIR\tier1\tier1_exclude.vpc" [$WINDOWS] +$Include "$SRCDIR\vstdlib\vstdlib_exclude.vpc" [$WINDOWS] + +$Configuration +{ + $Linker [$WINDOWS] + { + $AdditionalDependencies "$BASE Advapi32.lib" + $EnableLargeAddresses "Support Addresses Larger Than 2 Gigabytes (/LARGEADDRESSAWARE)" + $FixedBaseAddress "Generate a relocation section (/FIXED:NO)" + } +} + +$Project "Dedicated_main" +{ + $Folder "Source Files" + { + $File "main.cpp" + $File "$SRCDIR\common\SteamAppStartup.cpp" + $File "$SRCDIR\common\SteamAppStartup.h" + } + + $Folder "Resources" + { + $File "$SRCDIR\launcher\res\launcher.ico" + $File "dedicated_main.rc" + } + +} |