mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-22 09:38:56 +08:00
39d16ca147
* 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.
36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
//====== 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"
|
|
}
|
|
}
|