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.

46 lines
795 B

  1. //-----------------------------------------------------------------------------
  2. // BZIP2.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTLIBDIR "$OUTLIBCOMMONDIR"
  8. $include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler [$PS3]
  12. {
  13. $PreprocessorDefinitions "$BASE;_PS3"
  14. $ForceIncludes " "
  15. }
  16. $Compiler [!$PS3]
  17. {
  18. $ForceIncludes " "
  19. $CompileAs "Compile as C Code (/TC)"
  20. }
  21. }
  22. $Project "Bzip2"
  23. {
  24. $Folder "Source Files"
  25. {
  26. $File "blocksort.c"
  27. $File "bzip2.c"
  28. $File "bzlib.c"
  29. $File "compress.c"
  30. $File "crctable.c"
  31. $File "decompress.c"
  32. $File "huffman.c"
  33. $File "randtable.c"
  34. }
  35. $Folder "Header Files"
  36. {
  37. $File "bzlib.h"
  38. $File "bzlib_private.h"
  39. }
  40. }