You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CMakeLists.txt
+6-11Lines changed: 6 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -52,22 +52,19 @@ else()
52
52
endif()
53
53
54
54
# Feature options, including dependencies.
55
-
cmake_dependent_option(BUILD_SHARED_LIBS"Build and install libprojectM as a shared libraries. If OFF, builds as static libraries."ON"NOT ENABLE_EMSCRIPTEN"OFF)
56
-
option(ENABLE_DOXYGEN "Build and install Doxygen source code documentation in PROJECTM_DATADIR_PATH/docs."OFF)
57
-
option(ENABLE_CXX_INTERFACE "Enable exporting all C++ symbols, not only the C API, in the shared library. Warning: This is not very portable."OFF)
58
-
option(ENABLE_PRESETS "Build and install bundled presets"ON)
59
55
option(BUILD_TESTING "Build the libprojectM test suite"OFF)
56
+
cmake_dependent_option(BUILD_SHARED_LIBS"Build and install libprojectM as a shared libraries. If OFF, builds as static libraries."ON"NOT ENABLE_EMSCRIPTEN"OFF)
57
+
option(ENABLE_PLAYLIST "Enable building the playlist management library"ON)
60
58
cmake_dependent_option(ENABLE_SDL_UI "Build the SDL2-based developer test UI"OFF"NOT ENABLE_EMSCRIPTEN"OFF)
61
59
cmake_dependent_option(ENABLE_GLES "Enable OpenGL ES support"OFF"NOT ENABLE_EMSCRIPTEN"ON)
62
60
cmake_dependent_option(ENABLE_OPENMP "Enable OpenMP support if available"ON"NOT ENABLE_EMSCRIPTEN"OFF)
0 commit comments