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.

47 lines
822 B

  1. //-----------------------------------------------------------------------------
  2. // BITMAP_BYTESWAP.VPC
  3. //
  4. // Project Script
  5. //-----------------------------------------------------------------------------
  6. $Macro SRCDIR ".."
  7. $Macro OUTLIBDIR "$LIBPUBLIC"
  8. $include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
  9. $Configuration
  10. {
  11. $Compiler
  12. {
  13. $AdditionalIncludeDirectories "$BASE;$(XEDK)\include\win32" [$WINDOWS]
  14. }
  15. }
  16. $Configuration "Debug"
  17. {
  18. $General
  19. {
  20. $IntermediateDirectory ".\Debug_BitmapByteswap$PLATSUBDIR" [$WINDOWS]
  21. }
  22. }
  23. $Configuration "Release"
  24. {
  25. $General
  26. {
  27. $IntermediateDirectory ".\Debug_BitmapByteswap$PLATSUBDIR" [$WINDOWS]
  28. }
  29. }
  30. $Project "bitmap_byteswap"
  31. {
  32. $Folder "Source Files"
  33. {
  34. $File "ImageByteSwap.cpp"
  35. }
  36. $Folder "Header Files"
  37. {
  38. $File "$SRCDIR\public\bitmap\imageformat.h"
  39. }
  40. }