diff options
author | Patrick Roth <roth@stettbacher.ch> | 2019-10-04 11:15:59 +0200 |
---|---|---|
committer | Patrick Roth <roth@stettbacher.ch> | 2019-10-04 11:15:59 +0200 |
commit | 00bc5c593de67531c10a9dc1307cac4cc73f434b (patch) | |
tree | 87988d6869249a13891aafa97831b49409fb7784 | |
parent | Compile instructions added (diff) | |
download | o3000-driver-00bc5c593de67531c10a9dc1307cac4cc73f434b.tar.gz o3000-driver-00bc5c593de67531c10a9dc1307cac4cc73f434b.zip |
fix error when installing headers
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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") |