-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCMakeLists.txt
84 lines (71 loc) · 2.84 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
78
79
80
81
82
83
84
############################################################################
# CMakeLists.txt
# Copyright (C) 2016-2023 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.22)
project(MSCodec2 VERSION 0.1 LANGUAGES C)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib/mediastreamer2/plugins")
set(MSCODEC2_VERSION "${PROJECT_VERSION}")
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()
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
find_package(Mediastreamer2 5.3.0 REQUIRED)
find_package(Codec2 REQUIRED)
set(SOURCE_FILES mscodec2.c)
if(BUILD_SHARED_LIBS)
if(IOS)
add_library(mscodec2 SHARED ${SOURCE_FILES})
else()
add_library(mscodec2 MODULE ${SOURCE_FILES})
endif()
else()
add_library(mscodec2 STATIC ${SOURCE_FILES})
endif()
target_link_libraries(mscodec2 PUBLIC ${Mediastreamer2_TARGET} PRIVATE ${Codec2_TARGET})
if(Codec2_USE_BUILD_INTERFACE)
target_compile_definitions(mscodec2 PRIVATE CODEC2_USE_BUILD_INTERFACE)
endif()
if(BUILD_SHARED_LIBS)
if(IOS)
set_target_properties(mscodec2 PROPERTIES
FRAMEWORK TRUE
MACOSX_FRAMEWORK_IDENTIFIER org.linphone.mscodec2
MACOSX_FRAMEWORK_INFO_PLIST "${PROJECT_SOURCE_DIR}/build/osx/Info.plist.in"
)
endif()
if(MSVC)
install(FILES $<TARGET_PDB_FILE:mscodec2>
DESTINATION "${Mediastreamer2_PLUGINS_DIR}"
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
CONFIGURATIONS Debug RelWithDebInfo
)
set_target_properties(mscodec2 PROPERTIES PREFIX "lib")
endif()
endif()
install(TARGETS mscodec2
RUNTIME DESTINATION "${Mediastreamer2_PLUGINS_DIR}"
LIBRARY DESTINATION "${Mediastreamer2_PLUGINS_DIR}"
ARCHIVE DESTINATION "${Mediastreamer2_PLUGINS_DIR}"
FRAMEWORK DESTINATION Frameworks
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
)