From 45cd588f12f485d4b3a44b425dcbbcdec5f833db Mon Sep 17 00:00:00 2001 From: Matthias Vogelgesang Date: Wed, 27 Apr 2011 08:40:30 +0200 Subject: Users don't need uca-cam.h and uca-grabber.h anymore. --- src/CMakeLists.txt | 2 +- test/benchmark.c | 3 +-- test/control.c | 1 - test/enum.c | 1 - test/grab-async.c | 1 - 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 #include #include -#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 #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 #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 #include #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 #include #include "uca.h" -#include "uca-cam.h" #define handle_error(errno) {if ((errno) != UCA_NO_ERROR) printf("error at <%s:%i>\n", \ __FILE__, __LINE__);} -- cgit v1.2.3