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.

38 lines
658 B

  1. //-----------------------------------------------------------------------------
  2. // TESTPROCESS.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $MacroRequired "PLATSUBDIR"
  7. $Macro SRCDIR "..\.."
  8. $Macro OUTBINDIR "$SRCDIR\unittests\testprocess"
  9. $Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
  10. $Configuration "Debug"
  11. {
  12. $Compiler
  13. {
  14. $PreprocessorDefinitions "$BASE;PROTECTED_THINGS_DISABLE"
  15. }
  16. $Linker
  17. {
  18. $AdditionalDependencies "$BASE winmm.lib"
  19. }
  20. }
  21. $Project "Testprocess"
  22. {
  23. $Folder "Source Files"
  24. {
  25. $File "testprocess.cpp"
  26. }
  27. $Folder "Link Libraries"
  28. {
  29. $Lib tier2
  30. }
  31. }