aboutsummaryrefslogtreecommitdiff
path: root/mp/src/vpc_scripts/source_mll_qt_base.vpc
diff options
context:
space:
mode:
authorJoe Ludwig <[email protected]>2013-09-02 11:39:10 -0700
committerJoe Ludwig <[email protected]>2013-09-02 11:39:10 -0700
commita0c29e7dd67abb15c74c85f07741784877edfdcd (patch)
tree35bd6b4580afa14648895b0f321d33a712a5d0fa /mp/src/vpc_scripts/source_mll_qt_base.vpc
parentAdded bloom shader and screenspace effect helpers as examples for the SDK. (diff)
downloadsource-sdk-2013-a0c29e7dd67abb15c74c85f07741784877edfdcd.tar.xz
source-sdk-2013-a0c29e7dd67abb15c74c85f07741784877edfdcd.zip
General:
* Fixed a variety of server browser issues with mods based on this SDK * Fixed many warnings on various platforms * Added source code for fgdlib and raytrace * Updated many source files with the latest shared source from TF2. OSX: * Added support for Xcode 4.6 * Switched OSX builds to use Xcode instead of makefiles * Moved libs from src/lib/osx32 to src/lib/public/osx32 or src/lib/common/osx32 to match windows better. Linux: * Moved libs from src/lib/linux32 to src/lib/public/linux32 or src/lib/common/linux32 to match windows better.
Diffstat (limited to 'mp/src/vpc_scripts/source_mll_qt_base.vpc')
-rw-r--r--mp/src/vpc_scripts/source_mll_qt_base.vpc35
1 files changed, 35 insertions, 0 deletions
diff --git a/mp/src/vpc_scripts/source_mll_qt_base.vpc b/mp/src/vpc_scripts/source_mll_qt_base.vpc
new file mode 100644
index 00000000..099c658f
--- /dev/null
+++ b/mp/src/vpc_scripts/source_mll_qt_base.vpc
@@ -0,0 +1,35 @@
+//====== Copyright (c) 1996-2010, Valve Corporation, All rights reserved. =====
+//
+// Maya Plugin For Win32 - Same As source_dll_qt_win32_base.vpc except:
+// * QT_ROOT is left unspecified, the part VPC script needs to define it
+// as it varies with the version of Maya
+// * QT_NO_DEBUG is always defined.
+// * Only release versions of Qt libraries are linked
+// Maya is linked with release Qt libs, linking a plug-in with debug
+// libs will crash when a Qt widget is created
+//
+//=============================================================================
+
+$MacroRequired "QT_ROOT"
+
+$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
+$Include "$SRCDIR\vpc_scripts\qt_base.vpc"
+
+$Configuration
+{
+ $Compiler
+ {
+ $AdditionalIncludeDirectories "$BASE;.\;$QT_ROOT\include;.\$QT_TARGET_SUBDIR"
+ $PreprocessorDefinitions "$BASE;QT_LARGEFILE_SUPPORT;QT_DLL;QT_GUI_LIB;QT_CORE_LIB;QT_THREAD_SUPPORT;QT_NO_DEBUG"
+ $DisableSpecificWarnings "4127;4512;$BASE"
+ }
+}
+
+$Project
+{
+ $Folder "Link Libraries"
+ {
+ $Lib "$QT_ROOT\lib\qtcore4"
+ $Lib "$QT_ROOT\lib\qtgui4"
+ }
+}