We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa30a14 commit 7419504Copy full SHA for 7419504
src/CMakeLists.txt
@@ -27,6 +27,12 @@ set(CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE}" CACHE STRING
27
mark_as_advanced(EXECUTABLE_OUTPUT_PATH LIBRARY_OUTPUT_PATH)
28
29
30
+if(NOT (BUILD_CLIENT OR BUILD_SERVER))
31
+ message(WARNING "Neither BUILD_CLIENT nor BUILD_SERVER is set! Setting BUILD_SERVER=true")
32
+ set(BUILD_SERVER TRUE)
33
+endif()
34
+
35
36
option(ENABLE_CURL "Enable cURL support for fetching media" TRUE)
37
set(USE_CURL FALSE)
38
0 commit comments