forked from nillerusr/source-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdedicated_main.vpc
43 lines (37 loc) · 1.09 KB
/
dedicated_main.vpc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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"
}
}