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.

39 lines
865 B

  1. //-----------------------------------------------------------------------------
  2. // VPCCRCCHECK.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\..\.."
  7. $Macro OUTBINDIR "$SRCDIR\devtools\bin"
  8. $Conditional NO_STANDARD_VALVE_CODE "true"
  9. $Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
  10. $Configuration
  11. {
  12. $Compiler
  13. {
  14. $PreprocessorDefinitions "$BASE;TIER0_STATIC_LIB"
  15. }
  16. $PreBuildEvent
  17. {
  18. // This disables the crc check since we are building vpccrccheck.exe
  19. $CommandLine "set VALVE_NO_VPC_CRC_CHECK=1" "\n" \
  20. "$BASE" "\n" \
  21. "set VALVE_NO_VPC_CRC_CHECK=" "\n"
  22. }
  23. }
  24. $Project "vpccrccheck"
  25. {
  26. $Folder "Source Files"
  27. {
  28. $File "vpccrccheck.cpp"
  29. $File "crccheck_shared.cpp"
  30. $File "$SRCDIR/tier1/checksum_crc.cpp"
  31. $File "$SRCDIR/tier0/tier1_tables.cpp"
  32. }
  33. }