Merge pull request #113 from ufleisch/fix-cmake

Fix CMake build system to use existing include directory (#112)
This commit is contained in:
Nemanja Trifunovic 2023-11-04 11:33:22 -04:00 committed by GitHub
commit f6780f77f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -10,7 +10,7 @@ include(GNUInstallDirs)
target_include_directories(utf8cpp INTERFACE
"$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/source>"
$<INSTALL_INTERFACE:include/utf8cpp>
$<INSTALL_INTERFACE:include>
)
include(CMakePackageConfigHelpers)

View file

@ -2,3 +2,7 @@
include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@Targets.cmake")
check_required_components("@PROJECT_NAME@")
if(NOT TARGET utf8::cpp)
add_library(utf8::cpp ALIAS utf8cpp::utf8cpp)
endif()