home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / lib / k3d / include / k3d-platform-config.h < prev    next >
Encoding:
C/C++ Source or Header  |  2009-02-17  |  614 b   |  27 lines

  1. #ifndef K3DSDK_PLATFORM_CONFIG_H
  2. #define K3DSDK_PLATFORM_CONFIG_H
  3.  
  4. // Generated file, do not edit!  Make changes to k3d-platform-config.h.in instead.
  5.  
  6. #define K3D_API_WIN32
  7. /* #undef K3D_API_DARWIN */
  8.  
  9. #define K3D_COMPILER_GCC
  10. /* #undef K3D_COMPILER_MSVC */
  11.  
  12. /* #undef K3D_SYMBOL_VISIBILITY */
  13.  
  14. #define K3D_UINT_T_32_BITS
  15. /* #undef K3D_UINT_T_64_BITS */
  16.  
  17. #if defined K3D_COMPILER_GCC
  18.     #define K3D_COMPILER_NAME __VERSION__
  19. #elif defined K3D_COMPILER_MSVC
  20.     #define K3D_COMPILER_NAME "Visual Studio " #_MSC_VER
  21. #else
  22.     #error("Unknown compiler")
  23. #endif
  24.  
  25. #endif // !K3DSDK_PLATFORM_CONFIG_H
  26.  
  27.