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.

51 lines
1.3 KiB

  1. //-----------------------------------------------------------------------------
  2. // VTF2TGA.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR "..\.."
  7. $Macro OUTBINDIR "$SRCDIR\..\game\bin"
  8. $Macro OUTBINNAME "bin\vtf2tga_$PLATFORM" [$POSIX]
  9. $Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc"
  10. $Project "Vtf2tga"
  11. {
  12. $Folder "Source Files"
  13. {
  14. $File "vtf2tga.cpp"
  15. }
  16. $Folder "Header Files"
  17. {
  18. $File "$SRCDIR\public\mathlib\amd3dx.h"
  19. $File "$SRCDIR\public\tier0\basetypes.h"
  20. $File "$SRCDIR\public\tier0\commonmacros.h"
  21. $File "$SRCDIR\public\tier0\dbg.h"
  22. $File "$SRCDIR\public\tier0\fasttimer.h"
  23. $File "$SRCDIR\public\mathlib\mathlib.h"
  24. $File "$SRCDIR\public\tier0\memdbgon.h"
  25. $File "$SRCDIR\public\tier0\platform.h"
  26. $File "$SRCDIR\public\tier0\protected_things.h"
  27. $File "$SRCDIR\public\string_t.h"
  28. $File "$SRCDIR\public\tier1\strtools.h"
  29. $File "$SRCDIR\public\tier1\utlbuffer.h"
  30. $File "$SRCDIR\public\tier1\utlmemory.h"
  31. $File "$SRCDIR\public\mathlib\vector.h"
  32. $File "$SRCDIR\public\mathlib\vector2d.h"
  33. $File "$SRCDIR\public\vstdlib\vstdlib.h"
  34. $File "$SRCDIR\public\vtf\vtf.h"
  35. }
  36. $Folder "Link Libraries"
  37. {
  38. $Lib bitmap
  39. $Lib mathlib
  40. $Lib tier2
  41. $Lib vtf
  42. $Implib tier0 [$POSIX]
  43. $Lib tier1 [$POSIX]
  44. $Implib vstdlib [$POSIX]
  45. }
  46. }