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.

41 lines
725 B

  1. //-----------------------------------------------------------------------------
  2. // TIER3TEST.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin\unittests"
  8. $Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $PreprocessorDefinitions "$BASE;TIER3TEST_EXPORTS"
  14. }
  15. }
  16. $Project "tier3test"
  17. {
  18. $Folder "Source Files"
  19. {
  20. $File "tier3test.cpp"
  21. }
  22. $Folder "Header Files"
  23. {
  24. $File "$SRCDIR\public\movieobjects\dmx_to_vcd.h"
  25. $File "$SRCDIR\public\interpolatortypes.h"
  26. }
  27. $Folder "Link Libraries"
  28. {
  29. $Lib mathlib
  30. $Lib unitlib
  31. $Lib bitmap
  32. $Lib tier2
  33. $Lib tier3
  34. }
  35. }