From 65257ab413a63d1ff944570c5ff7427f47f226fa Mon Sep 17 00:00:00 2001 From: Milan Hauth Date: Wed, 17 Jul 2024 19:34:37 +0200 Subject: [PATCH] install diskhash.hpp --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f3e9037..d36e041 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -27,6 +27,9 @@ add_library(diskhash STATIC src/os_wrappers.c src/diskhash.c) #install(TARGETS diskhash DESTINATION lib) install(TARGETS diskhash DESTINATION lib/diskhash) +install(FILES src/diskhash.hpp + DESTINATION include) + if(DISKHASH_TESTS) include_directories(${CMAKE_SOURCE_DIR}/unittests)