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.

43 lines
891 B

  1. //-----------------------------------------------------------------------------
  2. // FOW.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\utils\common,$SRCDIR\public\fow"
  14. }
  15. }
  16. $Project "FoWLib"
  17. {
  18. $Folder "Source Files"
  19. {
  20. $File "fow.cpp"
  21. $File "fow_2dplane.cpp"
  22. $File "fow_horizontalslice.cpp"
  23. $File "fow_lineoccluder.cpp"
  24. $File "fow_radiusoccluder.cpp"
  25. $File "fow_trisoup.cpp"
  26. $File "fow_viewer.cpp"
  27. }
  28. $Folder "Header Files"
  29. {
  30. $File "..\public\fow\fow.h"
  31. $File "fow_2dplane.h"
  32. $File "fow_horizontalslice.h"
  33. $File "fow_lineoccluder.h"
  34. $File "fow_radiusoccluder.h"
  35. $File "fow_trisoup.h"
  36. $File "fow_viewer.h"
  37. }
  38. }