all repos — mgba @ a823a706c3b70f59cde7cf73cd1d7c47e5d1909b

mGBA Game Boy Advance Emulator

src/core/flags.h.in (view raw)

  1#ifndef FLAGS_H
  2#define FLAGS_H
  3
  4#ifndef MINIMAL_CORE
  5#cmakedefine MINIMAL_CORE @MINIMAL_CORE@
  6#endif
  7
  8// BUILD flags
  9
 10#ifndef BUILD_GL
 11#cmakedefine BUILD_GL
 12#endif
 13
 14#ifndef BUILD_GLES2
 15#cmakedefine BUILD_GLES2
 16#endif
 17
 18// Miscellaneous flags
 19
 20#ifndef COLOR_16_BIT
 21#cmakedefine COLOR_16_BIT
 22#endif
 23
 24#ifndef COLOR_5_6_5
 25#cmakedefine COLOR_5_6_5
 26#endif
 27
 28#ifndef DISABLE_THREADING
 29#cmakedefine DISABLE_THREADING
 30#endif
 31
 32#ifndef FIXED_ROM_BUFFER
 33#cmakedefine FIXED_ROM_BUFFER
 34#endif
 35
 36// M_CORE flags
 37
 38#ifndef M_CORE_GBA
 39#cmakedefine M_CORE_GBA
 40#endif
 41
 42#ifndef M_CORE_GB
 43#cmakedefine M_CORE_GB
 44#endif
 45
 46// ENABLE flags
 47
 48#ifndef ENABLE_SCRIPTING
 49#cmakedefine ENABLE_SCRIPTING
 50#endif
 51
 52// USE flags
 53
 54#ifndef USE_DEBUGGERS
 55#cmakedefine USE_DEBUGGERS
 56#endif
 57
 58#ifndef USE_EDITLINE
 59#cmakedefine USE_EDITLINE
 60#endif
 61
 62#ifndef USE_ELF
 63#cmakedefine USE_ELF
 64#endif
 65
 66#ifndef USE_EPOXY
 67#cmakedefine USE_EPOXY
 68#endif
 69
 70#ifndef USE_FFMPEG
 71#cmakedefine USE_FFMPEG
 72#endif
 73
 74#ifndef USE_GDB_STUB
 75#cmakedefine USE_GDB_STUB
 76#endif
 77
 78#ifndef USE_LIBAV
 79#cmakedefine USE_LIBAV
 80#endif
 81
 82#ifndef USE_LIBAVRESAMPLE
 83#cmakedefine USE_LIBAVRESAMPLE
 84#endif
 85
 86#ifndef USE_LIBSWRESAMPLE
 87#cmakedefine USE_LIBSWRESAMPLE
 88#endif
 89
 90#ifndef USE_LIBZIP
 91#cmakedefine USE_LIBZIP
 92#endif
 93
 94#ifndef USE_LZMA
 95#cmakedefine USE_LZMA
 96#endif
 97
 98#ifndef USE_MAGICK
 99#cmakedefine USE_MAGICK
100#endif
101
102#ifndef USE_MINIZIP
103#cmakedefine USE_MINIZIP
104#endif
105
106#ifndef USE_PNG
107#cmakedefine USE_PNG
108#endif
109
110#ifndef USE_PTHREADS
111#cmakedefine USE_PTHREADS
112#endif
113
114#ifndef USE_SQLITE3
115#cmakedefine USE_SQLITE3
116#endif
117
118#ifndef USE_ZLIB
119#cmakedefine USE_ZLIB
120#endif
121
122#endif