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.

44 lines
849 B

  1. //============ Copyright (c) Valve Corporation, All rights reserved. ==========
  2. //
  3. // Adds ZIP support to your project which is used by the itemtest_lib project
  4. //
  5. //=============================================================================
  6. $Include "$SRCDIR\vpc_scripts\fbx.vpc"
  7. $Project
  8. {
  9. $Folder "ZIP Support"
  10. {
  11. $File "$SRCDIR\public\XZip.cpp"
  12. {
  13. $Configuration
  14. {
  15. $Compiler
  16. {
  17. $Create/UsePrecompiledHeader "Not Using Precompiled Headers"
  18. }
  19. }
  20. }
  21. $File "$SRCDIR\public\XUnzip.cpp"
  22. {
  23. $Configuration
  24. {
  25. $Compiler
  26. {
  27. $Create/UsePrecompiledHeader "Not Using Precompiled Headers"
  28. $EnableC++Exceptions "Yes With SEH Exceptions (/EHa)" [!$X360]
  29. }
  30. }
  31. }
  32. }
  33. $Folder "Link Libraries"
  34. {
  35. $Lib datamodel
  36. $Lib dmserializers
  37. $Lib fbxutils
  38. $Lib movieobjects
  39. $Lib itemtest_lib
  40. }
  41. }