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.

40 lines
710 B

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