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.

40 lines
793 B

  1. //-----------------------------------------------------------------------------
  2. // MYSQL_WRAPPER.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE,..,..\mysql\include,..\..\vmpi"
  14. $PreprocessorDefinitions "$BASE;MYSQL_WRAPPER_EXPORTS"
  15. }
  16. }
  17. $Project "Mysql_wrapper"
  18. {
  19. $Folder "Source Files"
  20. {
  21. $File "mysql_wrapper.cpp"
  22. $File "StdAfx.cpp"
  23. }
  24. $Folder "Header Files"
  25. {
  26. $File "..\..\vmpi\imysqlwrapper.h"
  27. $File "StdAfx.h"
  28. }
  29. $Folder "Link Libraries"
  30. {
  31. $File "..\mysql\lib\opt\libmySQL.lib"
  32. $File "..\mysql\lib\opt\zlib.lib"
  33. }
  34. }