-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
84 lines (74 loc) · 2.83 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) 2014-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(MSWASAPI VERSION "1.1.1" LANGUAGES CXX)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib/mediastreamer2/plugins")
set(MSWASAPI_SO_VERSION "0")
option(ENABLE_STRICT "Build with strict compile options." YES)
find_package(Mediastreamer2 5.3.0 REQUIRED)
set(SOURCE_FILES
mswasapi.cpp
mswasapi.h
mswasapi_reader.cpp
mswasapi_reader.h
mswasapi_writer.cpp
mswasapi_writer.h
)
set(LIBS ws2_32 Mmdevapi)
if(CMAKE_SYSTEM_NAME STREQUAL "WindowsPhone")
list(APPEND LIBS phoneaudioses)
elseif( CMAKE_SYSTEM_NAME STREQUAL "WindowsStore" AND CMAKE_SYSTEM_VERSION STREQUAL "10.0" )# UWP
else()
list(APPEND LIBS Ole32)
endif()
if(BUILD_SHARED_LIBS)
add_library(mswasapi MODULE ${SOURCE_FILES})
else()
add_library(mswasapi STATIC ${SOURCE_FILES})
endif()
if(ENABLE_STRICT)
target_compile_options(mswasapi PRIVATE "/WX")
endif()
set_target_properties(mswasapi PROPERTIES PREFIX "lib")
target_link_libraries(mswasapi PRIVATE ${Mediastreamer2_TARGET} ${LIBS})
if(CMAKE_SYSTEM_NAME STREQUAL "WindowsStore")
set_target_properties(mswasapi PROPERTIES VS_WINRT_COMPONENT TRUE)
endif()
if(MSVC)
if(ENABLE_MICROSOFT_STORE_APP)
message(STATUS "Build mswasapi for Microsoft Store")
add_definitions("-DENABLE_MICROSOFT_STORE_APP")
else()
message(STATUS "Build mswasapi for Desktop")
endif()
install(FILES $<TARGET_PDB_FILE:mswasapi>
DESTINATION "${Mediastreamer2_PLUGINS_DIR}"
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
CONFIGURATIONS Debug RelWithDebInfo
)
endif()
install(TARGETS mswasapi
RUNTIME DESTINATION "${Mediastreamer2_PLUGINS_DIR}"
LIBRARY DESTINATION "${Mediastreamer2_PLUGINS_DIR}"
ARCHIVE DESTINATION "${Mediastreamer2_PLUGINS_DIR}"
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
)