-
-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add cmake files to build and install header only library (#85)
* add cmake build and install support export cmake config package too * enable bootstap build without cmake config package cleanup cmake list file
- Loading branch information
1 parent
b11f28a
commit dcfab29
Showing
3 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
cmake_minimum_required(VERSION 3.13...3.19) | ||
|
||
project(tomlplusplus LANGUAGES CXX VERSION 2.3.1) | ||
|
||
# Determine if this project is built as a subproject (using | ||
# add_subdirectory) or if it is the master project. | ||
set(MASTER_PROJECT OFF) | ||
if(CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR) | ||
set(MASTER_PROJECT ON) | ||
message(STATUS "CMake version: ${CMAKE_VERSION}") | ||
endif() | ||
|
||
|
||
add_library(tomlplusplus INTERFACE) | ||
add_library(tomlplusplus::tomlplusplus ALIAS tomlplusplus) | ||
target_compile_features(tomlplusplus INTERFACE cxx_std_17) | ||
target_include_directories(tomlplusplus INTERFACE | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include> | ||
$<INSTALL_INTERFACE:include> | ||
) | ||
|
||
|
||
option(TOMLPP_BUILD_EXAMPLES "Build examples." ${MASTER_PROJECT}) | ||
if(TOMLPP_BUILD_EXAMPLES) | ||
add_subdirectory(examples) | ||
endif() | ||
|
||
|
||
option(TOMLPP_INSTALL "Generate the install target" ${MASTER_PROJECT}) | ||
if(TOMLPP_INSTALL) | ||
include(CMakePackageConfigHelpers) | ||
include(GNUInstallDirs) | ||
install(TARGETS tomlplusplus EXPORT ${PROJECT_NAME}Targets) | ||
|
||
install(DIRECTORY include/toml++ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) | ||
|
||
write_basic_package_version_file( | ||
${PROJECT_NAME}ConfigVersion.cmake | ||
COMPATIBILITY SameMajorVersion | ||
) | ||
|
||
install( | ||
FILES cmake/tomlplusplusConfig.cmake # ----------> | ||
${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake | ||
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME} | ||
) | ||
|
||
install( | ||
EXPORT ${PROJECT_NAME}Targets | ||
NAMESPACE ${PROJECT_NAME}:: | ||
FILE ${PROJECT_NAME}Targets.cmake # <---------- | ||
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME} | ||
) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include(${CMAKE_CURRENT_LIST_DIR}/tomlplusplusTargets.cmake) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
cmake_minimum_required(VERSION 3.13...3.19) | ||
|
||
project(Examples LANGUAGES CXX) | ||
|
||
if(NOT TARGET tomlplusplus::tomlplusplus) | ||
find_package(tomlplusplus REQUIRED) | ||
endif() | ||
|
||
add_executable(toml_to_json_transcoder toml_to_json_transcoder.cpp) | ||
target_link_libraries(toml_to_json_transcoder PRIVATE tomlplusplus::tomlplusplus) | ||
|
||
enable_testing() | ||
add_test(NAME toml_to_json_transcoder | ||
COMMAND toml_to_json_transcoder ${CMAKE_CURRENT_LIST_DIR}/example.toml | ||
) |