-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
KoConfig.h.cmake
50 lines (41 loc) · 1.13 KB
/
KoConfig.h.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Check windows
#ifdef Q_OS_WIN
#ifdef _WIN64
#define ENV64BIT
#else
#define ENV32BIT
#endif
#endif
// Check GCC
#if __GNUC__
#if defined (__x86_64__) || defined (__ppc64__)
#define ENV64BIT
#else
#define ENV32BIT
#endif
#endif
#ifdef __APPLE__
# ifdef __BIG_ENDIAN__
# define WORDS_BIGENDIAN 1
# else
# undef WORDS_BIGENDIAN
# endif
#else
/* Define to 1 if your processor stores words with the most significant byte
first (like Motorola and SPARC, unlike Intel and VAX). */
#cmakedefine WORDS_BIGENDIAN ${CMAKE_WORDS_BIGENDIAN}
#endif
/* Number of bits in a file offset, on hosts where this is settable. */
#define _FILE_OFFSET_BITS 64
/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
/* #undef _LARGEFILE_SOURCE */
/* Define for large files, on AIX-style hosts. */
/* #undef _LARGE_FILES */
/* Defines if your system has the OpenEXR library */
#cmakedefine HAVE_OPENEXR 1
/* Defines if you have GL (Mesa, OpenGL, ...) and Qt GL support */
#cmakedefine HAVE_OPENGL 1
/* Defines if we use lcms2 */
#cmakedefine HAVE_LCMS2 1
/* Defines if we use KActivities */
#cmakedefine HAVE_KACTIVITIES 1