summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2012-09-28 18:24:49 +0200
committerMatthias Vogelgesang <matthias.vogelgesang@gmail.com>2012-09-28 18:24:49 +0200
commitb781c67a6bb80823c629dbc2824672c338f029cb (patch)
tree0a5008a31e314fc1b8ca07ddcf8cabf22d25c6b0 /test
parent99b737ae9f3f1d35a4696594821fa3bc39e8aa87 (diff)
downloaduca-b781c67a6bb80823c629dbc2824672c338f029cb.tar.gz
uca-b781c67a6bb80823c629dbc2824672c338f029cb.tar.bz2
uca-b781c67a6bb80823c629dbc2824672c338f029cb.tar.xz
uca-b781c67a6bb80823c629dbc2824672c338f029cb.zip
Fix mock unit test
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt27
1 files changed, 4 insertions, 23 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index b579d1b..f98def0 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -1,27 +1,8 @@
cmake_minimum_required(VERSION 2.8)
-add_definitions("--std=c99 -Wall")
+add_executable(test-mock test-mock.c)
-# --- Find packages and libraries ---------------------------------------------
-find_package(PkgConfig)
+target_link_libraries(test-mock uca ${UCA_DEPS})
-pkg_check_modules(GLIB2 glib-2.0>=2.24 REQUIRED)
-pkg_check_modules(GOBJECT2 gobject-2.0>=2.24 REQUIRED)
-
-set(libs uca ${GLIB2_LIBRARIES} ${GOBJECT2_LIBRARIES})
-
-# --- Build targets -----------------------------------------------------------
-include_directories(
- ${GLIB2_INCLUDE_DIRS}
- ${GOBJECT2_INCLUDE_DIRS}
- ${CMAKE_CURRENT_BINARY_DIR}/../src/
- ${CMAKE_CURRENT_SOURCE_DIR}/../src
- )
-
-if (HAVE_MOCK_CAMERA)
- add_executable(test-mock test-mock.c)
- target_link_libraries(test-mock ${libs})
-
- configure_file(${CMAKE_CURRENT_SOURCE_DIR}/gtester.xsl
- ${CMAKE_CURRENT_BINARY_DIR}/gtester.xsl)
-endif()
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/gtester.xsl
+ ${CMAKE_CURRENT_BINARY_DIR}/gtester.xsl)