summaryrefslogtreecommitdiffstats
path: root/test/CMakeLists.txt
blob: 1a25ee6fd82260ff6b7b8cd67eb0fa86faf3cd84 (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
28
29
30
31
32
33
34
cmake_minimum_required(VERSION 2.8)

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

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

pkg_check_modules(GTK2 gtk+-2.0)

include_directories(${CMAKE_SOURCE_DIR}/src)

file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/control.glade
    DESTINATION ${CMAKE_CURRENT_BINARY_DIR})

# --- Build targets -----------------------------------------------------------
add_executable(enum enum.c)
add_executable(grab grab.c)
add_executable(grab-async grab-async.c)
add_executable(benchmark benchmark.c)

target_link_libraries(enum uca)
target_link_libraries(grab uca)
target_link_libraries(grab-async uca)
target_link_libraries(benchmark uca)

if (GTK2_FOUND)
    include_directories(${GTK2_INCLUDE_DIRS})
    add_executable(control control.c)
    target_link_libraries(control
        uca
        ${GTK2_LIBRARIES}
        )
endif()