1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00
hl2sdk/utils/phonemeextractor/phonemeextractor.vpc
Joe Ludwig 39d16ca147 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.
2013-09-02 11:39:10 -07:00

84 lines
2.4 KiB
Plaintext

//-----------------------------------------------------------------------------
// PHONEMEEXTRACTOR.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"
// The project has some trouble with the deprecated string function warnings, so turn those off.
$AdditionalOptions "$BASE /wd4995"
}
$Linker
{
$AdditionalDependencies "$BASE odbc32.lib odbccp32.lib"
}
}
$Project "Phonemeextractor"
{
$Folder "Source Files"
{
$File "extractor_utils.cpp"
$File "$SRCDIR\public\phonemeconverter.cpp"
$File "$SRCDIR\public\sentence.cpp"
$File "phonemeextractor.cpp"
}
$Folder "Header Files"
{
$File "talkback.h"
}
$Folder "SAPI Header Files"
{ // These are dynamic because sapi might not be present in SDK branches, but we still want VPC to succeed.
$DynamicFile "..\sapi51\Include\sapi.h"
$DynamicFile "..\sapi51\Include\sapiddk.h"
$DynamicFile "..\sapi51\Include\Spddkhlp.h"
$DynamicFile "..\sapi51\Include\spdebug.h"
$DynamicFile "..\sapi51\Include\sperror.h"
$DynamicFile "..\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
$DynamicFile "..\sapi51\lib\i386\sapi.lib"
}
}