blob: 45120e4642cfd21e4a97045219a6b8099cc2afb6 (
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
|
cmake_minimum_required(VERSION 2.6)
if (POLICY CMP0053)
cmake_policy(SET CMP0053 OLD)
endif ()
if (POLICY CMP0054)
cmake_policy(SET CMP0054 OLD)
endif ()
project(ucanet C)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
find_package(PkgConfig)
include(FindPackageHandleStandardArgs)
include(PkgConfigVars)
include(GNUInstallDirs)
add_definitions("-std=c99 -Wall -fPIC")
add_definitions(-DG_LOG_DOMAIN="Uca-Net")
pkg_check_modules(GIO gio-2.0>=2.22 REQUIRED)
pkg_check_modules(UCA libuca>=2.1.0 REQUIRED)
pkg_check_variable(libuca plugindir)
set(UCA_NET_DEFAULT_PORT 8989)
if (UNIX)
set(HAVE_UNIX 1)
endif ()
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/config.h.in
${CMAKE_CURRENT_BINARY_DIR}/config.h)
include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${UCA_INCLUDE_DIRS}
${GIO_INCLUDE_DIRS})
link_directories(
${UCA_LIBRARY_DIRS}
${GIO_LIBRARY_DIRS})
# uca-net client camera
add_library(ucanet SHARED uca-net-camera.c)
target_link_libraries(ucanet
${UCA_LIBRARIES}
${GIO_LIBRARIES})
install(TARGETS ucanet
LIBRARY DESTINATION ${LIBUCA_PLUGINDIR}
RUNTIME DESTINATION ${LIBUCA_PLUGINDIR})
# uca-net server
add_executable(ucad ucad.c)
target_link_libraries(ucad
${UCA_LIBRARIES}
${GIO_LIBRARIES})
install(TARGETS ucad
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
COMPONENT executables)
|