blob: 0b83dfa9941e0faed5c215fcd27722042d545c75 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//-----------------------------------------------------------------------------
// SOURCE_EXE_CON_WIN32_BASE.VPC
//
// Base Settings for all Source(TM) Projects
//-----------------------------------------------------------------------------
$IgnoreRedundancyWarning "ON"
$MacroRequired "SRCDIR"
$MacroRequired "OUTBINDIR"
$Include "$SRCDIR\vpc_scripts\source_exe_win_win32_base.vpc"
$Configuration
{
$General [$VS2010]
{
$TargetName "$OUTBINNAME"
}
$Linker
{
$SubSystem "Console (/SUBSYSTEM:CONSOLE)"
}
}
|