Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
a211374d
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
694
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
a211374d
编写于
7月 04, 2017
作者:
L
liaogang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
FIX: interface deps under cmake < 3.3
上级
ccb87a97
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
20 addition
and
6 deletion
+20
-6
cmake/external/any.cmake
cmake/external/any.cmake
+10
-3
cmake/external/eigen.cmake
cmake/external/eigen.cmake
+10
-3
未找到文件。
cmake/external/any.cmake
浏览文件 @
a211374d
...
...
@@ -17,8 +17,15 @@ ExternalProject_Add(
TEST_COMMAND
""
)
ADD_LIBRARY
(
lib_any INTERFACE
)
ADD_DEPENDENCIES
(
lib_any extern_lib_any
)
if
(
${
CMAKE_VERSION
}
VERSION_LESS
"3.3.0"
)
set
(
dummyfile
${
CMAKE_CURRENT_BINARY_DIR
}
/lib_any_dummy.c
)
file
(
WRITE
${
dummyfile
}
"const char * dummy_any =
\"
${
dummyfile
}
\"
;"
)
add_library
(
lib_any STATIC
${
dummyfile
}
)
else
()
add_library
(
lib_any INTERFACE
)
endif
()
add_dependencies
(
lib_any extern_lib_any
)
add_definitions
(
-DANY_IMPL_ANY_CAST_MOVEABLE
)
LIST
(
APPEND external_project_dependencies
extern_
lib_any
)
LIST
(
APPEND external_project_dependencies lib_any
)
cmake/external/eigen.cmake
浏览文件 @
a211374d
...
...
@@ -26,7 +26,14 @@ ExternalProject_Add(
TEST_COMMAND
""
)
ADD_LIBRARY
(
eigen3 INTERFACE
)
ADD_DEPENDENCIES
(
eigen3 extern_eigen3
)
if
(
${
CMAKE_VERSION
}
VERSION_LESS
"3.3.0"
)
set
(
dummyfile
${
CMAKE_CURRENT_BINARY_DIR
}
/eigen3_dummy.c
)
file
(
WRITE
${
dummyfile
}
"const char * dummy_eigen3 =
\"
${
dummyfile
}
\"
;"
)
add_library
(
eigen3 STATIC
${
dummyfile
}
)
else
()
add_library
(
eigen3 INTERFACE
)
endif
()
LIST
(
APPEND external_project_dependencies extern_eigen3
)
add_dependencies
(
eigen3 extern_eigen3
)
LIST
(
APPEND external_project_dependencies eigen3
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录