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.

51 lines
1007 B

  1. //-----------------------------------------------------------------------------
  2. // Project Script
  3. //-----------------------------------------------------------------------------
  4. $Macro SRCDIR "..\..\..\.."
  5. $Macro OUTBINDIR "."
  6. $Include "$SRCDIR\vpc_scripts\source_exe_con_win32_base.vpc"
  7. $Configuration
  8. {
  9. $Compiler
  10. {
  11. $AdditionalIncludeDirectories "$BASE,..\python25\include"
  12. //$AdditionalIncludeDirectories "$BASE;$SRCDIR\common\python\$PYTHONVER;$SRCDIR\public\python"
  13. $PreprocessorDefinitions "$BASE;PROTECTED_THINGS_DISABLE;VPYTHON_TEST"
  14. }
  15. $Linker
  16. {
  17. $AdditionalLibraryDirectories "..\python25\lib"
  18. }
  19. }
  20. $Project "vpython"
  21. {
  22. //$Folder "Link libraries"
  23. //{
  24. // $File "..\python25\lib\python25.lib"
  25. //}
  26. $Folder "Source Files"
  27. {
  28. $File "..\..\..\..\public\vscript\ivscript.h"
  29. $File "..\..\..\..\public\vscript\vscript_templates.h"
  30. $File "vpython.cpp"
  31. {
  32. $Configuration
  33. {
  34. $Compiler
  35. {
  36. //$AdditionalOptions "/EHa"
  37. }
  38. }
  39. }
  40. }
  41. }