summaryrefslogtreecommitdiffstats
path: root/test/CMakeLists.txt
blob: b579d1bc11ccdad06f54c8233b66b9c1d3cf02c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
cmake_minimum_required(VERSION 2.8)

add_definitions("--std=c99 -Wall")

# --- Find packages and libraries ---------------------------------------------
find_package(PkgConfig)

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()