Team Fortress 2 Source Code as on 22/4/2020
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.

42 lines
842 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // python_base.vpc
  4. //
  5. // General settings for a Python DLL or Executable
  6. //
  7. //-----------------------------------------------------------------------------
  8. $MacroRequired "PYTHONVER"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE;$SRCDIR\common\python\$PYTHONVER;$SRCDIR\public\python"
  14. }
  15. $Linker
  16. {
  17. $AdditionalLibraryDirectories "$BASE;$SRCDIR\lib\common\python\$PYTHONVER"
  18. }
  19. }
  20. $Configuration "Debug"
  21. {
  22. $General
  23. {
  24. $OutputDirectory "Debug_Python$PYTHONVER"
  25. $IntermediateDirectory "Debug_Python$PYTHONVER"
  26. }
  27. }
  28. $Configuration "Release"
  29. {
  30. $General
  31. {
  32. $OutputDirectory "Release_Python$PYTHONVER"
  33. $IntermediateDirectory "Release_Python$PYTHONVER"
  34. }
  35. }
  36. $Include "$SRCDIR\vpc_scripts\python_inc_$PYTHONVER.vpc"