From 3f7dfeea13023c041c00fcedeb417c75ffed99a4 Mon Sep 17 00:00:00 2001 From: Ranieri Althoff <1993083+ranisalt@users.noreply.github.com> Date: Thu, 16 Mar 2023 00:51:50 +0100 Subject: [PATCH] Fix install directory --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73b5658..1536a56 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,7 +52,7 @@ endif () if(UUID_ENABLE_INSTALL) # Install step and imported target - install(FILES include/uuid.h DESTINATION include) + install(FILES include/uuid.h DESTINATION include/uuid) install(TARGETS ${PROJECT_NAME} EXPORT ${PROJECT_NAME}-targets) install(EXPORT ${PROJECT_NAME}-targets DESTINATION lib/cmake/${PROJECT_NAME})