Warning, /graphics/krita/KoConfig.h.cmake is written in an unsupported language. File is not indexed.

0001 // Check windows
0002 #ifdef Q_OS_WIN
0003    #ifdef _WIN64
0004      #define ENV64BIT
0005   #else
0006     #define ENV32BIT
0007   #endif
0008 #endif
0009 
0010 // Check GCC
0011 #ifdef __GNUC__
0012   #if defined (__x86_64__) || defined (__ppc64__)
0013     #define ENV64BIT
0014   #else
0015     #define ENV32BIT
0016   #endif
0017 #endif
0018 
0019 #ifdef __APPLE__
0020 # ifdef __BIG_ENDIAN__
0021 #  define WORDS_BIGENDIAN 1
0022 # else
0023 #  undef WORDS_BIGENDIAN
0024 # endif
0025 #else
0026 /* Define to 1 if your processor stores words with the most significant byte
0027    first (like Motorola and SPARC, unlike Intel and VAX). */
0028 #cmakedefine WORDS_BIGENDIAN ${CMAKE_WORDS_BIGENDIAN}
0029 #endif
0030 
0031 /* Defines if the Dr. Mingw crash handler should be used */
0032 #cmakedefine USE_DRMINGW 1
0033 
0034 /* Number of bits in a file offset, on hosts where this is settable. */
0035 #define _FILE_OFFSET_BITS 64
0036 
0037 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
0038 /* #undef _LARGEFILE_SOURCE */
0039 
0040 /* Define for large files, on AIX-style hosts. */
0041 /* #undef _LARGE_FILES */
0042 
0043 /* Defines if your system has the OpenEXR library */
0044 #cmakedefine HAVE_OPENEXR 1
0045 
0046 /* Defines if we use lcms2 */
0047 #cmakedefine HAVE_LCMS2 1
0048 
0049 /* Defines if we use lcms2.4 */
0050 #cmakedefine HAVE_LCMS24 1
0051 
0052 /* Defines if we can use LittleCMS's fast float plugin. (GPLv3) */
0053 #cmakedefine HAVE_LCMS_FAST_FLOAT_PLUGIN 1
0054 
0055 /* Defines if DBUS is present */
0056 #cmakedefine HAVE_DBUS 1
0057 
0058 /* Defines if KCrash is present */
0059 #cmakedefine HAVE_KCRASH 1
0060 
0061 /* This variable contains the path to the root of the build directory */
0062 #define KRITA_BUILD_DIR "${CMAKE_BINARY_DIR}"