Counter Strike : Global Offensive Source Code
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//----------------------------------------------------------------------------- // // python_base.vpc // // General settings for a Python DLL or Executable // //-----------------------------------------------------------------------------
$MacroRequired "PYTHONVER"
$Configuration { $Compiler { $AdditionalIncludeDirectories "$BASE;$SRCDIR\common\python\$PYTHONVER;$SRCDIR\public\python" }
$Linker { $AdditionalLibraryDirectories "$BASE;$SRCDIR\lib\common\python\$PYTHONVER" } }
$Configuration "Debug" { $General { $OutputDirectory "Debug_Python$PYTHONVER" $IntermediateDirectory "Debug_Python$PYTHONVER" } }
$Configuration "Release" { $General { $OutputDirectory "Release_Python$PYTHONVER" $IntermediateDirectory "Release_Python$PYTHONVER" } }
$Include "$SRCDIR\vpc_scripts\python_inc_$PYTHONVER.vpc"
|