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
823 B

  1. //-----------------------------------------------------------------------------
  2. // VTEX_LAUNCHER.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Macro OUTBINNAME "vtex"
  9. $Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
  10. $Configuration
  11. {
  12. $Compiler
  13. {
  14. $AdditionalIncludeDirectories "$BASE;..\common"
  15. $PreprocessorDefinitions "$BASE;PROTECTED_THINGS_DISABLE"
  16. }
  17. $Linker
  18. {
  19. $AdditionalDependencies "$BASE odbc32.lib odbccp32.lib"
  20. }
  21. }
  22. $Project "Vtex_launcher"
  23. {
  24. $Folder "Source Files"
  25. {
  26. $File "vtex_launcher.cpp"
  27. }
  28. $Folder "Header Files"
  29. {
  30. $File "$SRCDIR\public\ilaunchabledll.h"
  31. $File "$SRCDIR\public\tier1\interface.h"
  32. }
  33. $Folder "Link Libraries"
  34. {
  35. $Lib tier2
  36. }
  37. }