mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
27 lines
549 B
Plaintext
27 lines
549 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// SOURCE_EXE_CON_WIN32_BASE.VPC
|
|
//
|
|
// Base Settings for all Source(TM) Projects
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$IgnoreRedundancyWarning "ON"
|
|
$MacroRequired "SRCDIR"
|
|
$MacroRequired "OUTBINDIR"
|
|
$MacroRequired "PLATSUBDIR"
|
|
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_win_win32_base.vpc"
|
|
|
|
$Configuration
|
|
{
|
|
$General
|
|
{
|
|
$TargetName "$OUTBINNAME"
|
|
}
|
|
|
|
$Linker
|
|
{
|
|
$SubSystem "Console (/SUBSYSTEM:CONSOLE)"
|
|
}
|
|
}
|