mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2024-12-22 17:47:38 +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.
99 lines
2.5 KiB
Plaintext
99 lines
2.5 KiB
Plaintext
//-----------------------------------------------------------------------------
|
|
// PHONEMEEXTRACTOR_IMS.VPC
|
|
//
|
|
// Project Script
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$Macro SRCDIR "..\.."
|
|
$Macro OUTBINDIR "$SRCDIR\..\game\bin\phonemeextractors"
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
|
|
|
|
$Configuration
|
|
{
|
|
$Compiler
|
|
{
|
|
$AdditionalIncludeDirectories "$BASE;../common,../hlfaceposer,../sapi51/include"
|
|
$PreprocessorDefinitions "$BASE;PHONEMEEXTRACTOR_EXPORTS"
|
|
}
|
|
|
|
$Linker
|
|
{
|
|
$AdditionalDependencies "$BASE odbc32.lib odbccp32.lib"
|
|
}
|
|
}
|
|
|
|
$Configuration "Debug"
|
|
{
|
|
$General
|
|
{
|
|
$OutputDirectory ".\Debug_ims" [$WIN32]
|
|
$IntermediateDirectory ".\Debug_ims" [$WIN32]
|
|
}
|
|
}
|
|
|
|
$Configuration "Release"
|
|
{
|
|
$General
|
|
{
|
|
$OutputDirectory ".\Release_ims" [$WIN32]
|
|
$IntermediateDirectory ".\Release_ims" [$WIN32]
|
|
}
|
|
}
|
|
|
|
$Project "Phonemeextractor_ims"
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
$File "extractor_utils.cpp"
|
|
$File "$SRCDIR\public\phonemeconverter.cpp"
|
|
$File "$SRCDIR\public\sentence.cpp"
|
|
$File "phonemeextractor_ims.cpp"
|
|
}
|
|
|
|
$Folder "Header Files"
|
|
{
|
|
$File "talkback.h"
|
|
}
|
|
|
|
$Folder "SAPI Header Files"
|
|
{
|
|
$File "..\sapi51\Include\sapi.h"
|
|
$File "..\sapi51\Include\sapiddk.h"
|
|
$File "..\sapi51\Include\Spddkhlp.h"
|
|
$File "..\sapi51\Include\spdebug.h"
|
|
$File "..\sapi51\Include\sperror.h"
|
|
$File "..\sapi51\Include\sphelper.h"
|
|
}
|
|
|
|
$Folder "Public Header Files"
|
|
{
|
|
$File "$SRCDIR\public\mathlib\amd3dx.h"
|
|
$File "$SRCDIR\public\tier0\basetypes.h"
|
|
$File "$SRCDIR\public\tier0\commonmacros.h"
|
|
$File "$SRCDIR\public\tier0\dbg.h"
|
|
$File "$SRCDIR\public\tier0\fasttimer.h"
|
|
$File "$SRCDIR\public\appframework\IAppSystem.h"
|
|
$File "$SRCDIR\public\mathlib\mathlib.h"
|
|
$File "$SRCDIR\public\phonemeconverter.h"
|
|
$File "$SRCDIR\public\phonemeextractor\phonemeextractor.h"
|
|
$File "$SRCDIR\public\tier0\platform.h"
|
|
$File "$SRCDIR\public\tier0\protected_things.h"
|
|
$File "$SRCDIR\public\sentence.h"
|
|
$File "$SRCDIR\public\string_t.h"
|
|
$File "$SRCDIR\public\tier1\strtools.h"
|
|
$File "$SRCDIR\public\tier1\utllinkedlist.h"
|
|
$File "$SRCDIR\public\tier1\utlmemory.h"
|
|
$File "$SRCDIR\public\tier1\utlvector.h"
|
|
$File "$SRCDIR\public\mathlib\vector.h"
|
|
$File "$SRCDIR\public\mathlib\vector2d.h"
|
|
$File "$SRCDIR\public\vstdlib\vstdlib.h"
|
|
}
|
|
|
|
$Folder "Link Libraries"
|
|
{
|
|
$Lib mathlib
|
|
$File "..\sapi51\lib\i386\sapi.lib"
|
|
}
|
|
}
|