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.

39 lines
737 B

  1. //-----------------------------------------------------------------------------
  2. // LZMA.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. $AdditionalIncludeDirectories "$BASE;C"
  14. $PreprocessorDefinitions "$BASE;_NO_EXCEPTIONS;_LZMA_PROB32;_7ZIP_ST"
  15. }
  16. }
  17. $Project "lzma"
  18. {
  19. $Folder "Source Files"
  20. {
  21. $File "lzma.cpp"
  22. $Folder "7Zip Common"
  23. {
  24. $File "C\7zTypes.h"
  25. $File "C\LzmaEnc.h"
  26. $File "C\LzmaEnc.c"
  27. $File "C\LzmaDec.c"
  28. $File "C\LzmaDec.h"
  29. $File "C\LzFind.h"
  30. $File "C\LzFind.c"
  31. $File "C\LzHash.h"
  32. }
  33. }
  34. }