From 7dd61fc30147d158f55e696e2412fa2e7c01b945 Mon Sep 17 00:00:00 2001 From: Vilius Sutkus '89 Date: Thu, 22 Aug 2024 15:09:22 +0300 Subject: [PATCH] Install .hpp files from ${CMAKE_CURRENT_BINARY_DIR}/src/ too (generated project_info.hpp) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aa8e2095..03e80af1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -231,7 +231,7 @@ if (ODR_CLANG_TIDY) endif () install( - DIRECTORY src/ + DIRECTORY src/ ${CMAKE_CURRENT_BINARY_DIR}/src/ DESTINATION include/ FILES_MATCHING PATTERN "*.hpp" )