diff options
| author | Narendra Umate <[email protected]> | 2013-09-07 15:43:32 -0700 |
|---|---|---|
| committer | Narendra Umate <[email protected]> | 2013-09-07 15:43:32 -0700 |
| commit | c3ca7291626b60a32008774dd290671708babc20 (patch) | |
| tree | c87d1097bb8b59b6724ca19560f7c92b0309caf3 /mp/src/vpc_scripts/source_exe_qt_con_base.vpc | |
| parent | Update .gitignore. (diff) | |
| parent | Added missing libs for linux and OSX in their new location. (diff) | |
| download | source-sdk-2013-c3ca7291626b60a32008774dd290671708babc20.tar.xz source-sdk-2013-c3ca7291626b60a32008774dd290671708babc20.zip | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'mp/src/vpc_scripts/source_exe_qt_con_base.vpc')
| -rw-r--r-- | mp/src/vpc_scripts/source_exe_qt_con_base.vpc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mp/src/vpc_scripts/source_exe_qt_con_base.vpc b/mp/src/vpc_scripts/source_exe_qt_con_base.vpc new file mode 100644 index 00000000..4620e908 --- /dev/null +++ b/mp/src/vpc_scripts/source_exe_qt_con_base.vpc @@ -0,0 +1,16 @@ +// base file for a console app with qt. win32 only for now. CG: I'm not 100% sure this is the right definition,
+// but I'm moving the logic here so it doesn't end up pasted into every such app.
+
+$Include "$SRCDIR\vpc_scripts\source_exe_qt_win32_base.vpc"
+
+$Configuration
+{
+ $Linker
+ {
+ $SubSystem "Console (/SUBSYSTEM:CONSOLE)"
+ }
+ $Compiler
+ {
+ $AdditionalIncludeDirectories "$BASE,..\common"
+ }
+}
|