diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /vpc_scripts/source_mll_qt_base.vpc | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'vpc_scripts/source_mll_qt_base.vpc')
| -rw-r--r-- | vpc_scripts/source_mll_qt_base.vpc | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/vpc_scripts/source_mll_qt_base.vpc b/vpc_scripts/source_mll_qt_base.vpc new file mode 100644 index 0000000..9ec5f13 --- /dev/null +++ b/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" + } +} |