Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
Z
ZLMediaKit
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
张翔宇
ZLMediaKit
Commits
b5bf9304
Commit
b5bf9304
authored
Apr 06, 2021
by
ziyue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
调整cmake
parent
9c552128
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
19 行增加
和
22 行删除
+19
-22
CMakeLists.txt
+17
-4
cmake/FindSRTP.cmake
+2
-2
webrtc/CMakeLists.txt
+0
-16
没有找到文件。
CMakeLists.txt
查看文件 @
b5bf9304
...
@@ -225,10 +225,23 @@ if(ENABLE_API)
...
@@ -225,10 +225,23 @@ if(ENABLE_API)
add_subdirectory
(
api
)
add_subdirectory
(
api
)
endif
()
endif
()
if
(
ENABLE_WEBRTC
)
if
(
ENABLE_WEBRTC
)
add_definitions
(
-DENABLE_WEBRTC
)
#查找srtp是否安装
add_subdirectory
(
webrtc
)
find_package
(
SRTP QUIET
)
endif
()
if
(
SRTP_FOUND
)
message
(
STATUS
"found library:
${
SRTP_LIBRARIES
}
"
)
include_directories
(
${
SRTP_INCLUDE_DIRS
}
)
list
(
APPEND LINK_LIB_LIST
${
SRTP_LIBRARIES
}
)
add_definitions
(
-DENABLE_WEBRTC
)
include_directories
(
./webrtc
)
file
(
GLOB SRC_WEBRTC_LIST ./webrtc/*.cpp ./webrtc/*.h ./webrtc/*.hpp
)
add_library
(
webrtc
${
SRC_WEBRTC_LIST
}
)
list
(
APPEND LINK_LIB_LIST webrtc
)
else
()
message
(
WARNING
"srtp未找到, webrtc相关功能打开失败"
)
endif
()
endif
()
if
(
NOT IOS
)
if
(
NOT IOS
)
#测试程序
#测试程序
...
...
cmake/FindSRTP.cmake
查看文件 @
b5bf9304
...
@@ -32,7 +32,7 @@ set(_SRTP_ROOT_PATHS
...
@@ -32,7 +32,7 @@ set(_SRTP_ROOT_PATHS
find_path
(
SRTP_INCLUDE_DIRS
find_path
(
SRTP_INCLUDE_DIRS
NAMES srtp2/srtp.h
NAMES srtp2/srtp.h
HINTS _SRTP_ROOT_PATHS
HINTS _SRTP_ROOT_PATHS
${
SRTP_PREFIX
}
PATH_SUFFIXES include
PATH_SUFFIXES include
)
)
...
@@ -42,7 +42,7 @@ endif()
...
@@ -42,7 +42,7 @@ endif()
find_library
(
SRTP_LIBRARIES
find_library
(
SRTP_LIBRARIES
NAMES srtp2
NAMES srtp2
HINTS
${
_SRTP_ROOT_PATHS
}
HINTS
${
_SRTP_ROOT_PATHS
}
${
SRTP_PREFIX
}
PATH_SUFFIXES bin lib
PATH_SUFFIXES bin lib
)
)
...
...
webrtc/CMakeLists.txt
deleted
100644 → 0
查看文件 @
9c552128
list
(
APPEND LINK_LIB_LIST webrtc
)
#查找srtp是否安装
find_package
(
SRTP QUIET
)
if
(
SRTP_FOUND
)
message
(
STATUS
"found library:
${
SRTP_LIBRARIES
}
"
)
include_directories
(
${
SRTP_INCLUDE_DIRS
}
)
list
(
APPEND LINK_LIB_LIST
${
SRTP_LIBRARIES
}
)
else
()
message
(
FATAL_ERROR
"srtp未找到!"
)
endif
()
include_directories
(
./
)
file
(
GLOB SRC_LIST ./*.cpp ./*.h ./*.hpp
)
add_library
(
webrtc
${
SRC_LIST
}
)
set
(
LINK_LIB_LIST
${
LINK_LIB_LIST
}
PARENT_SCOPE
)
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论