diff options
| author | raysan5 <[email protected]> | 2019-03-16 13:02:16 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2019-03-16 13:02:16 +0100 |
| commit | 2a92d6af3e63fcc47d1030c1274223afb4163a4b (patch) | |
| tree | 3eb48f193dabfdc5338073f200c23247650be97e /src/CMakeLists.txt | |
| parent | a61d3ad5122e860e21211c8bacd30f560d71f3da (diff) | |
| download | raylib-2a92d6af3e63fcc47d1030c1274223afb4163a4b.tar.gz raylib-2a92d6af3e63fcc47d1030c1274223afb4163a4b.zip | |
Support no-audio no-models modules compilation
Renamed flags for convenience.
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 104d6d2d..c65a4996 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -49,7 +49,7 @@ if(USE_AUDIO) set(sources ${raylib_sources}) else() MESSAGE(STATUS "Audio Backend: None (-DUSE_AUDIO=OFF)") - set(INCLUDE_AUDIO_MODULE 0) + set(RAYLIB_MODULE_AUDIO 0) list(REMOVE_ITEM raylib_sources ${CMAKE_CURRENT_SOURCE_DIR}/raudio.c) set(sources ${raylib_sources}) endif() |
