From 00bc5c593de67531c10a9dc1307cac4cc73f434b Mon Sep 17 00:00:00 2001 From: Patrick Roth Date: Fri, 4 Oct 2019 11:15:59 +0200 Subject: fix error when installing headers --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 074bf52..57d74fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,4 +29,4 @@ target_compile_options(o3000 PRIVATE -Wall -g -ggdb -O3 -fPIC) target_link_libraries(o3000 pthread ${LIBUSB_LIBRARIES}) install(TARGETS o3000 DESTINATION lib) -install(DIRECTORY ../../include/o3000 DESTINATION include FILES_MATCHING PATTERN "*.h*") +install(FILES "o3000.h" "o3000_portable.h" "image_header.h" DESTINATION "include/o3000") -- cgit v1.2.1