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.

65 lines
1.1 KiB

  1. //-----------------------------------------------------------------------------
  2. // VP4.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Include "$SRCDIR\vpc_scripts\source_exe_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)"
  14. $PrecompiledHeaderFile "Debug/vp4.pch"
  15. }
  16. }
  17. $Project "Vp4"
  18. {
  19. $Folder "Source Files"
  20. {
  21. $File "vp4dialog.cpp"
  22. $File "main.cpp" \
  23. "$SRCDIR\public\vgui_controls\vgui_controls.cpp"
  24. {
  25. $Configuration
  26. {
  27. $Compiler
  28. {
  29. $Create/UsePrecompiledHeader "Not Using Precompiled Headers"
  30. }
  31. }
  32. }
  33. $File "stdafx.cpp"
  34. {
  35. $Configuration
  36. {
  37. $Compiler
  38. {
  39. $Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)"
  40. }
  41. }
  42. }
  43. }
  44. $Folder "Header Files"
  45. {
  46. $File "stdafx.h"
  47. $File "vp4dialog.h"
  48. }
  49. $Folder "Link Libraries"
  50. {
  51. $Lib appframework
  52. $Lib tier3
  53. $Lib tier2
  54. $Lib vgui_controls
  55. $Lib mathlib
  56. }
  57. }