~singpolyma/biboumi

b3503bf11297a7982bf9e9008b408e3bf8121224 — Florent Le Coz 8 years ago e6569a1
Also check if the louloulibs/CMakeLists.txt file is missing

Because apparently when cloning a repository with submodules, git creates
empty sub-directories
1 files changed, 4 insertions(+), 2 deletions(-)

M CMakeLists.txt
M CMakeLists.txt => CMakeLists.txt +4 -2
@@ 63,8 63,10 @@ if(RONN_EXECUTABLE)
  add_custom_target(doc DEPENDS ${MAN_PAGE})
endif()

if(NOT IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/louloulibs")
  message(FATAL_ERROR "louloulibs/ directory not found. Make sure you fetched the submodules with 'git submodule init && git submodule update'")
if(NOT IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/louloulibs" OR
    NOT EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/loulou/CMakeLists.txt")
  message(FATAL_ERROR "louloulibs/ not found or empty. Make sure you fetched
  the submodules with 'git submodule init && git submodule update'")
endif()
add_subdirectory("louloulibs")
include_directories("louloulibs")