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.

49 lines
1.1 KiB

  1. //-----------------------------------------------------------------------------
  2. // quickhull.vpc
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $macro SRCDIR "..\.."
  7. //$macro OUTLIBDIR "$SRCDIR\lib\public"
  8. $include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE;$SRCDIR\public;$SRCDIR\common;$SRCDIR\public\quickhull"
  14. $DisableSpecificWarnings "$BASE;4127;4239" [$WINDOWS]
  15. $EnableRunTimeTypeInfo "No (/GR-)"
  16. }
  17. $Compiler [$WINDOWS]
  18. {
  19. $EnableEnhancedInstructionSet "Streaming SIMD Extensions (/arch:SSE)"
  20. }
  21. }
  22. $Project "quickhull"
  23. {
  24. $Folder "Source Files"
  25. {
  26. $File "qhTypes.h"
  27. $File "qhMath.h"
  28. $File "qhMath.inl"
  29. $File "qhMath.cpp"
  30. $File "qhMemory.h"
  31. $File "qhMemory.inl"
  32. $File "qhMemory.cpp"
  33. $File "qhArray.h"
  34. $File "qhArray.inl"
  35. $File "qhList.h"
  36. $File "qhList.inl"
  37. $File "qhHalfEdge.h"
  38. $File "qhHalfEdge.cpp"
  39. $File "qhConvex.h"
  40. $File "qhConvex.inl"
  41. $File "qhConvex.cpp"
  42. $File "qhMass.h"
  43. $File "qhMass.cpp"
  44. }
  45. }