mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-14 16:40:05 +00:00
52 lines
1007 B
Plaintext
52 lines
1007 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// Project Script
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$Macro SRCDIR "..\..\..\.."
|
|
$Macro OUTBINDIR "."
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_con_win32_base.vpc"
|
|
|
|
$Configuration
|
|
{
|
|
$Compiler
|
|
{
|
|
$AdditionalIncludeDirectories "$BASE,..\python25\include"
|
|
//$AdditionalIncludeDirectories "$BASE;$SRCDIR\common\python\$PYTHONVER;$SRCDIR\public\python"
|
|
|
|
$PreprocessorDefinitions "$BASE;PROTECTED_THINGS_DISABLE;VPYTHON_TEST"
|
|
}
|
|
|
|
$Linker
|
|
{
|
|
$AdditionalLibraryDirectories "..\python25\lib"
|
|
}
|
|
|
|
}
|
|
|
|
$Project "vpython"
|
|
{
|
|
//$Folder "Link libraries"
|
|
//{
|
|
// $File "..\python25\lib\python25.lib"
|
|
//}
|
|
|
|
$Folder "Source Files"
|
|
{
|
|
$File "..\..\..\..\public\vscript\ivscript.h"
|
|
$File "..\..\..\..\public\vscript\vscript_templates.h"
|
|
$File "vpython.cpp"
|
|
{
|
|
$Configuration
|
|
{
|
|
$Compiler
|
|
{
|
|
//$AdditionalOptions "/EHa"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|