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.

32 lines
909 B

  1. //===================== Copyright (c) Valve Corporation. All Rights Reserved. ======================
  2. //
  3. //==================================================================================================
  4. $Include "$SRCDIR\vpc_scripts\source_dll_win32_base.vpc"
  5. $Include "$SRCDIR\vpc_scripts\qt_base.vpc"
  6. $Configuration
  7. {
  8. $Compiler
  9. {
  10. $AdditionalIncludeDirectories "$BASE;.\;$SRCDIR\game\shared;$QT_ROOT\include;.\$QT_TARGET_SUBDIR"
  11. $PreprocessorDefinitions "$BASE;QT_LARGEFILE_SUPPORT;QT_DLL;QT_GUI_LIB;QT_CORE_LIB;QT_THREAD_SUPPORT"
  12. $PreprocessorDefinitions "$BASE;QT_NO_DEBUG" [!$QTDEBUG]
  13. $DisableSpecificWarnings "4127;4512;$BASE"
  14. }
  15. }
  16. $Project
  17. {
  18. $Folder "Link Libraries" [$QTDEBUG]
  19. {
  20. $Lib "$QT_ROOT\lib\qtcored4"
  21. $Lib "$QT_ROOT\lib\qtguid4"
  22. }
  23. $Folder "Link Libraries" [!$QTDEBUG]
  24. {
  25. $Lib "$QT_ROOT\lib\qtcore4"
  26. $Lib "$QT_ROOT\lib\qtgui4"
  27. }
  28. }