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.

36 lines
850 B

  1. //-----------------------------------------------------------------------------
  2. // REPLAY_COMMON.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro REPLAY_COMMON_HEADERS_TITLE "Headers"
  8. $Macro OUTLIBDIR "$LIBCOMMON"
  9. $include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
  10. $Configuration
  11. {
  12. $Compiler
  13. {
  14. $AdditionalIncludeDirectories "$BASE;$SRCDIR\dx9sdk\include" [$WINDOWS]
  15. $AdditionalIncludeDirectories "$BASE;$SRCDIR\x360xdk\include\win32\vs2005" [$WINDOWS]
  16. }
  17. }
  18. $Project "replay_common"
  19. {
  20. $Folder "Source Files"
  21. {
  22. $File "replay.cpp"
  23. $File "replaylib.cpp"
  24. $File "basereplayserializeable.cpp"
  25. $File "performance.cpp"
  26. $File "replaytime.cpp"
  27. $File "replayutils.cpp"
  28. $File "screenshot.cpp"
  29. }
  30. $Include "$SRCDIR\replay\common\headers.vpc"
  31. }