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.

43 lines
733 B

  1. //-----------------------------------------------------------------------------
  2. // UNICODE.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 "Debug"
  10. {
  11. $Compiler
  12. {
  13. $PreprocessorDefinitions "$BASE;UNICODE_EXPORTS"
  14. }
  15. }
  16. $Configuration "Release"
  17. {
  18. $Compiler
  19. {
  20. $PreprocessorDefinitions "$BASE;UNICODE_EXPORTS"
  21. }
  22. $Linker
  23. {
  24. $AdditionalDependencies "$BASE unicows.lib"
  25. $SystemLibraries "iconv;z" [$OSXALL]
  26. $SystemLibraries "rt" [$LINUXALL]
  27. }
  28. }
  29. $Project "Unicode"
  30. {
  31. $Folder "Source Files"
  32. {
  33. $File "unicode.cpp"
  34. }
  35. }