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

  1. //-----------------------------------------------------------------------------
  2. // localize.dll project script
  3. //-----------------------------------------------------------------------------
  4. $macro SRCDIR ".."
  5. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  6. $include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
  7. $Configuration
  8. {
  9. $Linker [$POSIX]
  10. {
  11. $SystemLibraries "iconv" [$OSXALL]
  12. }
  13. }
  14. $Project "localize"
  15. {
  16. $Folder "Public Header Files"
  17. {
  18. $File "$SRCDIR\public\localize\ilocalize.h"
  19. }
  20. $Folder "Source Files"
  21. {
  22. $File "localize.cpp"
  23. $File "$SRCDIR\public\registry.cpp"
  24. $File "$SRCDIR\public\UnicodeFileHelpers.cpp"
  25. }
  26. $Folder "Header Files"
  27. {
  28. }
  29. $Folder "Link Libraries"
  30. {
  31. $Lib "$LIBPUBLIC\tier2"
  32. $ImplibExternal steam_api [ ( $WIN32 || $POSIX || $PS3 ) && !$NO_STEAM ]
  33. $ImplibExternal steam_api64 [ $WIN64 && !$NO_STEAM ]
  34. }
  35. }