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
662 B

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