1
0
Fork 0

Merge pull request #2423 from cuberite/JsonCppCheck

Added check for JsonCpp submodule presence.
This commit is contained in:
Mattes D 2015-08-11 09:22:31 +02:00
commit 6308643669
1 changed files with 3 additions and 0 deletions

View File

@ -164,6 +164,9 @@ endif()
if (NOT EXISTS ${CMAKE_SOURCE_DIR}/lib/libevent/CMakeLists.txt)
message(FATAL_ERROR "LibEvent is missing in folder lib/libevent. Have you initialized and updated the submodules / downloaded the extra libraries?")
endif()
if (NOT EXISTS ${CMAKE_SOURCE_DIR}/lib/jsoncpp/CMakeLists.txt)
message(FATAL_ERROR "JsonCPP is missing in folder lib/jsoncpp. Have you initialized and updated the submodules / downloaded the extra libraries?")
endif()
# Include all the libraries:
add_subdirectory(lib/jsoncpp/)