diff options
-rw-r--r-- | src/CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/benchmark.c | 3 | ||||
-rw-r--r-- | test/control.c | 1 | ||||
-rw-r--r-- | test/enum.c | 1 | ||||
-rw-r--r-- | test/grab-async.c | 1 | ||||
-rw-r--r-- | test/grab.c | 1 |
6 files changed, 2 insertions, 7 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 39f4ce7..d17e098 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -117,7 +117,7 @@ target_link_libraries(uca ${uca_LIBS}) install(TARGETS uca LIBRARY DESTINATION lib${LIB_SUFFIX}) -install(FILES ${uca_HDRS} +install(FILES uca.h DESTINATION include/uca) # --- install pkg-config file diff --git a/test/benchmark.c b/test/benchmark.c index ae7593a..7a6b6e0 100644 --- a/test/benchmark.c +++ b/test/benchmark.c @@ -5,9 +5,8 @@ #include <sys/time.h> #include <stdio.h> #include <stdlib.h> -#include "uca.h" -#include "uca-cam.h" +#include "uca.h" static __suseconds_t time_diff(struct timeval *start, struct timeval *stop) { diff --git a/test/control.c b/test/control.c index ee6d6e7..00bda8c 100644 --- a/test/control.c +++ b/test/control.c @@ -4,7 +4,6 @@ #include <string.h> #include "uca.h" -#include "uca-cam.h" typedef struct { diff --git a/test/enum.c b/test/enum.c index e9395a5..3a9c59d 100644 --- a/test/enum.c +++ b/test/enum.c @@ -1,7 +1,6 @@ #include <stdio.h> #include "uca.h" -#include "uca-cam.h" int count_dots(const char *s) { diff --git a/test/grab-async.c b/test/grab-async.c index a6e6e65..c4c270d 100644 --- a/test/grab-async.c +++ b/test/grab-async.c @@ -3,7 +3,6 @@ #include <stdlib.h> #include <unistd.h> #include "uca.h" -#include "uca-cam.h" struct image_props { uint32_t width; diff --git a/test/grab.c b/test/grab.c index b0bd0ee..9f86069 100644 --- a/test/grab.c +++ b/test/grab.c @@ -2,7 +2,6 @@ #include <stdio.h> #include <stdlib.h> #include "uca.h" -#include "uca-cam.h" #define handle_error(errno) {if ((errno) != UCA_NO_ERROR) printf("error at <%s:%i>\n", \ __FILE__, __LINE__);} |