tomlplusplus/cmake/tomlplusplus.cmake.in
friendlyanon d962c6ccc1
Restore CMake package config used by Meson (#105)
Co-authored-by: friendlyanon <friendlyanon@users.noreply.github.com>
2021-05-21 16:09:28 +03:00

15 lines
468 B
CMake

@PACKAGE_INIT@
# If tomlplusplus::tomlplusplus target is not defined it will be included
if(NOT TARGET tomlplusplus::tomlplusplus)
# Import tomlplusplus interface library
add_library(tomlplusplus::tomlplusplus INTERFACE IMPORTED)
set_target_properties(tomlplusplus::tomlplusplus PROPERTIES
INTERFACE_INCLUDE_DIRECTORIES "${PACKAGE_PREFIX_DIR}/include")
# Require C++17
target_compile_features(tomlplusplus::tomlplusplus INTERFACE cxx_std_17)
endif()