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.
19 lines
523 B
19 lines
523 B
enable_language(OBJC) |
|
|
|
# General build options. |
|
set(BUILD_TESTING OFF) |
|
|
|
# Disable all system dependencies. |
|
# All of these will be fetched via FetchContent and linked statically. |
|
set(DEVILUTIONX_SYSTEM_SDL2 OFF) |
|
set(DEVILUTIONX_SYSTEM_SDL_IMAGE OFF) |
|
set(DEVILUTIONX_SYSTEM_SDL_AUDIOLIB OFF) |
|
set(DEVILUTIONX_SYSTEM_LIBSODIUM OFF) |
|
set(DEVILUTIONX_SYSTEM_LIBPNG OFF) |
|
set(DEVILUTIONX_SYSTEM_LIBFMT OFF) |
|
|
|
set(NOEXIT ON) |
|
|
|
# Disable sanitizers. They're not supported out-of-the-box. |
|
set(ASAN OFF) |
|
set(UBSAN OFF)
|
|
|