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.

51 lines
850 B

  1. $Include "$SRCDIR\vpc_scripts\version.vpc"
  2. $Include "$SRCDIR\vpc_scripts\source_posix_base.vpc"
  3. $MacroRequired "OUTBINNAME" "$PROJECTNAME"
  4. $MacroRequired "OUTBINDIR" "$SRCDIR\..\game\bin"
  5. // General configuration info.
  6. $Configuration
  7. {
  8. $General
  9. {
  10. $ConfigurationType "Dynamic Library (.dll)"
  11. $GameOutputFile "$OUTBINDIR/$OUTBINNAME$OUTDLLEXT"
  12. }
  13. $Compiler
  14. {
  15. $PreprocessorDefinitions "$BASE;DLLNAME=$OUTBINNAME"
  16. }
  17. $Linker
  18. {
  19. $OutputFile "$(OBJ_DIR)/$OUTBINNAME$OUTDLLEXT"
  20. }
  21. }
  22. // Skeleton Project - All derived projects get this as a starting base
  23. $Project
  24. {
  25. $Folder "Source Files"
  26. {
  27. $File "$SRCDIR\public\tier0\memoverride.cpp"
  28. {
  29. $Configuration
  30. {
  31. $Compiler
  32. {
  33. $Create/UsePrecompiledHeader "Not Using Precompiled Headers"
  34. }
  35. }
  36. }
  37. }
  38. $Folder "Resources"
  39. {
  40. $File "$ROOTSCRIPT"
  41. }
  42. }