diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-09-30 08:11:24 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-09-30 08:11:24 +0900 |
commit | d0a0f8cda88d644ca38b2b90024303fbe362602c (patch) | |
tree | 4191754170b12da24d139217cf0d5270c627ea6e | |
parent | 508f4362b7b5e1863153cca6fe6756adedfa33ee (diff) | |
download | libquotient-d0a0f8cda88d644ca38b2b90024303fbe362602c.tar.gz libquotient-d0a0f8cda88d644ca38b2b90024303fbe362602c.zip |
Move C++ standard requirement to target_compile_features
...so that users of the library wouldn't need to redefine that they need C++17.
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 951ef8c9..ce4af9a8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -225,11 +225,12 @@ set_target_properties(${PROJECT_NAME} PROPERTIES VERSION "${PROJECT_VERSION}" SOVERSION ${API_VERSION} INTERFACE_${PROJECT_NAME}_MAJOR_VERSION ${API_VERSION} - CXX_STANDARD 17 ) set_property(TARGET ${PROJECT_NAME} APPEND PROPERTY COMPATIBLE_INTERFACE_STRING ${PROJECT_NAME}_MAJOR_VERSION) +target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_17) + target_include_directories(${PROJECT_NAME} PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/lib> $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}> |