Skip to content

Commit 7419504

Browse files
committedSep 1, 2015
Enable server build when no builds are enabled
1 parent fa30a14 commit 7419504

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎src/CMakeLists.txt

+6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ set(CMAKE_BUILD_TYPE "${CMAKE_BUILD_TYPE}" CACHE STRING
2727
mark_as_advanced(EXECUTABLE_OUTPUT_PATH LIBRARY_OUTPUT_PATH)
2828

2929

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+
3036
option(ENABLE_CURL "Enable cURL support for fetching media" TRUE)
3137
set(USE_CURL FALSE)
3238

0 commit comments

Comments
 (0)
Please sign in to comment.