blob: 873b85ffd55d55c8f9861c7aff4867421775e374 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
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>=2.22)
pkg_check_modules(GTHREAD2 gthread-2.0)
pkg_check_modules(GLIB2 glib-2.0>=2.24 REQUIRED)
pkg_check_modules(GOBJECT2 gobject-2.0>=2.24 REQUIRED)
#include_directories(${CMAKE_SOURCE_DIR}/src)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/control.glade ${CMAKE_CURRENT_BINARY_DIR})
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/run.py ${CMAKE_CURRENT_BINARY_DIR})
# --- Build targets -----------------------------------------------------------
#add_executable(enum enum.c)
#add_executable(grab-async grab-async.c)
#add_executable(benchmark benchmark.c)
#target_link_libraries(enum uca)
#target_link_libraries(grab-async uca)
#target_link_libraries(benchmark uca)
include_directories(
${GLIB2_INCLUDE_DIRS}
${GOBJECT2_INCLUDE_DIRS}
${CMAKE_CURRENT_BINARY_DIR}/../src/
${CMAKE_CURRENT_SOURCE_DIR}/../src
)
message("${CMAKE_CURRENT_SOURCE_DIR}")
add_executable(grab grab.c)
add_executable(grab-async grab-async.c)
target_link_libraries(grab uca ${GLIB2_LIBRARIES} ${GOBJECT2_LIBRARIES})
target_link_libraries(grab-async uca ${GLIB2_LIBRARIES} ${GOBJECT2_LIBRARIES})
add_executable(grab_pylon grab_pylon.c)
target_link_libraries(grab_pylon uca ${GLIB2_LIBRARIES} ${GOBJECT2_LIBRARIES})
if (GTK2_FOUND)
include_directories(${GTK2_INCLUDE_DIRS})
add_executable(control
control.c
egg-property-cell-renderer.c
egg-property-tree-view.c)
target_link_libraries(control uca
${GTK2_LIBRARIES} ${GTHREAD2_LIBRARIES})
install(TARGETS control
RUNTIME DESTINATION bin)
install(FILES control.glade
DESTINATION share/libuca)
endif()
if (HAVE_MOCK_CAMERA)
add_executable(test-mock test-mock.c)
target_link_libraries(test-mock uca
${GLIB2_LIBRARIES} ${GOBJECT2_LIBRARIES})
endif()
add_executable(test-all test-all.c)
target_link_libraries(test-all uca
${GLIB2_LIBRARIES} ${GOBJECT2_LIBRARIES})
|