You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.0 KiB
54 lines
1.0 KiB
//----------------------------------------------------------------------------- |
|
// VRAD_LAUNCHER.VPC |
|
// |
|
// Project Script |
|
//----------------------------------------------------------------------------- |
|
|
|
$Macro SRCDIR "..\.." |
|
$Macro OUTBINDIR "$LIBPUBLIC" |
|
$Macro OUTBINNAME "vrad" |
|
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc" |
|
|
|
$Configuration |
|
{ |
|
$Compiler |
|
{ |
|
$Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)" |
|
$PrecompiledHeaderFile "$(IntDir)/vrad_launcher.pch" |
|
} |
|
|
|
$Linker [$WIN32] |
|
{ |
|
$EnableLargeAddresses "Support Addresses Larger Than 2 Gigabytes (/LARGEADDRESSAWARE)" |
|
} |
|
} |
|
|
|
$Project "Vrad_launcher" |
|
{ |
|
$Folder "Source Files" |
|
{ |
|
-$File "$SRCDIR\public\tier0\memoverride.cpp" |
|
|
|
$File "vrad_launcher.cpp" |
|
|
|
$File "StdAfx.cpp" |
|
{ |
|
$Configuration |
|
{ |
|
$Compiler |
|
{ |
|
$Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)" |
|
} |
|
} |
|
} |
|
|
|
} |
|
|
|
$Folder "Header Files" |
|
{ |
|
$File "$SRCDIR\public\tier1\interface.h" |
|
$File "$SRCDIR\public\ivraddll.h" |
|
$File "StdAfx.h" |
|
} |
|
}
|
|
|