Merge pull request #10 from kbenzie/cmake_subdirectory

Play nice with CMake add_subdirectory
This commit is contained in:
Simon Brand
2018-06-08 10:51:01 +01:00
committed by GitHub

View File

@@ -2,42 +2,49 @@ cmake_minimum_required(VERSION 3.0)
project(optional)
# Prepare "Catch" library for other executables
set(CATCH_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/test)
add_library(Catch INTERFACE)
target_include_directories(Catch INTERFACE ${CATCH_INCLUDE_DIR})
# Make test executable
set(TEST_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/tests/main.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/noexcept.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/make_optional.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/in_place.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/relops.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/observers.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/extensions.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/constexpr.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/constructors.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/assignment.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/bases.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/nullopt.cpp)
add_executable(tests ${TEST_SOURCES})
option(OPTIONAL_ENABLE_TESTS "Enable tests." ON)
option(OPTIONAL_ENABLE_DOCS "Enable documentation." ON)
add_library(optional INTERFACE)
target_sources(optional INTERFACE ${CMAKE_SOURCE_DIR}/tl/optional.hpp)
target_include_directories(optional INTERFACE ${CMAKE_SOURCE_DIR}/tl)
target_sources(optional INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/tl/optional.hpp)
target_include_directories(optional INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/tl)
target_link_libraries(tests Catch optional)
if(OPTIONAL_ENABLE_TESTS)
# Prepare "Catch" library for other executables
set(CATCH_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/test)
add_library(Catch INTERFACE)
target_include_directories(Catch INTERFACE ${CATCH_INCLUDE_DIR})
set(CXXSTD 14 CACHE STRING "C++ standard to use, default C++14")
set_property(TARGET tests PROPERTY CXX_STANDARD ${CXXSTD})
# Make test executable
set(TEST_SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/tests/main.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/noexcept.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/make_optional.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/in_place.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/relops.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/observers.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/extensions.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/constexpr.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/constructors.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/assignment.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/bases.cpp
${CMAKE_CURRENT_SOURCE_DIR}/tests/nullopt.cpp)
find_package(standardese) # find standardese after installation
add_executable(tests ${TEST_SOURCES})
# generates a custom target that will run standardese to generate the documentation
if (standardese_FOUND)
standardese_generate(optional
INCLUDE_DIRECTORY tl
CONFIG ${CMAKE_SOURCE_DIR}/standardese.config
INPUT tl/optional.hpp)
endif ()
target_link_libraries(tests Catch optional)
set(CXXSTD 14 CACHE STRING "C++ standard to use, default C++14")
set_property(TARGET tests PROPERTY CXX_STANDARD ${CXXSTD})
endif()
if(OPTIONAL_ENABLE_DOCS)
find_package(standardese) # find standardese after installation
# generates a custom target that will run standardese to generate the documentation
if(standardese_FOUND)
standardese_generate(optional
INCLUDE_DIRECTORY tl
CONFIG ${CMAKE_CURRENT_SOURCE_DIR}/standardese.config
INPUT tl/optional.hpp)
endif()
endif()