summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
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)