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.

43 lines
765 B

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