-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakeLists.txt
77 lines (65 loc) · 2.87 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
############################################################################
# CMakeLists.txt
# Copyright (C) 2019 Belledonne Communications, Grenoble France
#
############################################################################
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
############################################################################
cmake_minimum_required(VERSION 3.0)
project(MSAndroidCamera2 VERSION 0.1 LANGUAGES CXX)
option(ENABLE_SHARED "Build shared library." YES)
option(ENABLE_STATIC "Build static library." NO)
include(GNUInstallDirs)
if(NOT CMAKE_INSTALL_RPATH AND CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_RPATH ${CMAKE_INSTALL_FULL_LIBDIR})
message(STATUS "Setting install rpath to ${CMAKE_INSTALL_RPATH}")
endif()
message(STATUS "NDK API IS ${ANDROID_NATIVE_API_LEVEL}")
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}")
find_package(Mediastreamer2 CONFIG REQUIRED)
find_package(bctoolbox CONFIG REQUIRED)
find_package(ortp CONFIG REQUIRED)
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
${MEDIASTREAMER2_INCLUDE_DIRS}
)
set(LIBS ${MEDIASTREAMER2_LIBRARIES} android camera2ndk mediandk ${ORTP_LIBRARIES} ${BCTOOLBOX_CORE_LIBRARIES})
set(SOURCE_FILES android-camera2-capture.cpp)
#Inherited from ms2 cmake config file
set(MS2_PLUGINS_DIR "${MEDIASTREAMER2_PLUGINS_LOCATION}")
if(ENABLE_STATIC)
add_library(msandroidcamera2-static STATIC ${SOURCE_FILES})
set_target_properties(msandroidcamera2-static PROPERTIES OUTPUT_NAME msandroidcamera2)
target_link_libraries(msandroidcamera2-static ${LIBS})
install(TARGETS msandroidcamera2-static
RUNTIME DESTINATION ${MS2_PLUGINS_DIR}
LIBRARY DESTINATION ${MS2_PLUGINS_DIR}
ARCHIVE DESTINATION ${MS2_PLUGINS_DIR}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
)
endif()
if(ENABLE_SHARED)
add_library(msandroidcamera2 MODULE ${SOURCE_FILES})
target_link_libraries(msandroidcamera2 ${LIBS})
install(TARGETS msandroidcamera2
RUNTIME DESTINATION ${MS2_PLUGINS_DIR}
LIBRARY DESTINATION ${MS2_PLUGINS_DIR}
ARCHIVE DESTINATION ${MS2_PLUGINS_DIR}
FRAMEWORK DESTINATION Frameworks
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
)
endif()