aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNao Pross <np@0hm.ch>2022-02-11 20:06:24 +0100
committerNao Pross <np@0hm.ch>2022-02-11 20:06:24 +0100
commit48574d5fd9e665980f481437fdf490747f4fd644 (patch)
treefb4bb61f869f3728bb7e928ff7f3e42dabe9fc0d
parentcomments changed (diff)
downloado3000-color-pipe-48574d5fd9e665980f481437fdf490747f4fd644.tar.gz
o3000-color-pipe-48574d5fd9e665980f481437fdf490747f4fd644.zip
Add missing include headers of LibO3000 to CMakeLists.txtHEADmaster
Many headers need o3000_portable.h to work, but the default installation path for o3000 is /usr/local/include, which is not always included in the default compiler flags.
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d5e82c6..306cd9a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -32,7 +32,7 @@ set(LIB_NAME o3000_imgpipe)
# find libo3000 library
find_package(LibO3000 REQUIRED)
-include_directories(.)
+include_directories(. ${LIBO3000_INCLUDE_DIRS})
file(GLOB colorpipesources *.c *.h)