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
4e57416b
Commit
4e57416b
authored
May 27, 2022
by
baiyfcu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修复cmake generate export 和 test工程先后变编译错误问题
parent
e2908e97
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
15 行增加
和
14 行删除
+15
-14
api/CMakeLists.txt
+15
-14
没有找到文件。
api/CMakeLists.txt
查看文件 @
4e57416b
...
...
@@ -5,19 +5,20 @@ file(GLOB api_src_list include/*.h source/*.cpp source/*.h source/*.c)
if
(
IOS
)
add_library
(
mk_api STATIC
${
api_src_list
}
)
target_link_libraries
(
mk_api
${
LINK_LIB_LIST
}
jsoncpp
)
else
()
if
(
ENABLE_API_STATIC_LIB
)
return
()
endif
()
if
(
ENABLE_API_STATIC_LIB
)
add_definitions
(
-DMediaKitApi_STATIC
)
add_library
(
mk_api STATIC
${
api_src_list
}
)
else
()
else
()
add_library
(
mk_api SHARED
${
api_src_list
}
)
endif
()
endif
()
if
(
CMAKE_SYSTEM_NAME MATCHES
"Linux"
)
if
(
CMAKE_SYSTEM_NAME MATCHES
"Linux"
)
target_link_libraries
(
mk_api -Wl,--start-group jsoncpp
${
LINK_LIB_LIST
}
-Wl,--end-group
)
else
()
else
()
target_link_libraries
(
mk_api jsoncpp
${
LINK_LIB_LIST
}
)
endif
()
add_subdirectory
(
tests
)
endif
()
add_definitions
(
-DGENERATE_EXPORT
)
...
...
@@ -29,8 +30,8 @@ generate_export_header(mk_api
EXPORT_FILE_NAME
"
${
CMAKE_BINARY_DIR
}
/mk_export.h"
)
if
(
NOT IOS
)
file
(
GLOB api_header_list include/*.h
${
CMAKE_BINARY_DIR
}
/*.h
)
install
(
FILES
${
api_header_list
}
DESTINATION
${
INSTALL_PATH_INCLUDE
}
)
install
(
TARGETS mk_api ARCHIVE DESTINATION
${
INSTALL_PATH_LIB
}
LIBRARY DESTINATION
${
INSTALL_PATH_LIB
}
)
endif
()
\ No newline at end of file
add_subdirectory
(
tests
)
file
(
GLOB api_header_list include/*.h
${
CMAKE_BINARY_DIR
}
/*.h
)
install
(
FILES
${
api_header_list
}
DESTINATION
${
INSTALL_PATH_INCLUDE
}
)
install
(
TARGETS mk_api ARCHIVE DESTINATION
${
INSTALL_PATH_LIB
}
LIBRARY DESTINATION
${
INSTALL_PATH_LIB
}
)
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论