-
Notifications
You must be signed in to change notification settings - Fork 8
/
CMakeLists.txt
62 lines (50 loc) · 1.15 KB
/
CMakeLists.txt
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
cmake_minimum_required(VERSION 3.5)
project(image2rtsp)
# Default to C99
if(NOT CMAKE_C_STANDARD)
set(CMAKE_C_STANDARD 99)
endif()
# Default to C++14
if(NOT CMAKE_CXX_STANDARD)
set(CMAKE_CXX_STANDARD 14)
endif()
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
find_package(rclcpp REQUIRED)
find_package(sensor_msgs REQUIRED)
find_package(PkgConfig REQUIRED)
pkg_check_modules(GST REQUIRED
gstreamer-1.0
gstreamer-app-1.0
gstreamer-rtsp-server-1.0
)
file(GLOB SOURCES src/video.cpp)
add_executable(image2rtsp src/image2rtsp.cpp ${SOURCES})
ament_target_dependencies(image2rtsp rclcpp sensor_msgs)
include_directories(
${GST_INCLUDE_DIRS}
)
target_link_libraries(image2rtsp
${GST_LIBRARIES}
)
install(TARGETS
image2rtsp
DESTINATION lib/${PROJECT_NAME}
)
install(
DIRECTORY
config
launch
DESTINATION share/${PROJECT_NAME}
)
# Install Python modules
ament_python_install_package(python)
# Install Python executables
install(PROGRAMS
python/rtsp.py
DESTINATION lib/${PROJECT_NAME}
)
ament_package()