Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
01747537
T
TDengine
项目概览
taosdata
/
TDengine
大约 2 年 前同步成功
通知
1192
Star
22018
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
01747537
编写于
9月 23, 2021
作者:
H
Hongze Cheng
提交者:
GitHub
9月 23, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #8043 from taosdata/3.0_refact
3.0_refact
上级
bafe6039
8e76b4a6
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
44 addition
and
4 deletion
+44
-4
CMakeLists.txt
CMakeLists.txt
+11
-1
cmake/cjson_CMakeLists.txt.in
cmake/cjson_CMakeLists.txt.in
+12
-0
cmake/gtest_CMakeLists.txt.in
cmake/gtest_CMakeLists.txt.in
+2
-2
cmake/lz4_CMakeLists.txt.in
cmake/lz4_CMakeLists.txt.in
+12
-0
deps/CMakeLists.txt
deps/CMakeLists.txt
+3
-0
source/client/CMakeLists.txt
source/client/CMakeLists.txt
+4
-1
未找到文件。
CMakeLists.txt
浏览文件 @
01747537
...
...
@@ -20,12 +20,18 @@ set(DEPS_TMP_FILE "${CMAKE_BINARY_DIR}/deps_tmp_CMakeLists.txt.in")
configure_file
(
"
${
CMAKE_SUPPORT_DIR
}
/deps_CMakeLists.txt.in"
${
DEPS_TMP_FILE
}
)
## googletest
option
(
BUILD_TEST
"If build unit tests using googletest"
O
FF
)
option
(
BUILD_TEST
"If build unit tests using googletest"
O
N
)
if
(
${
BUILD_TEST
}
)
cat
(
"
${
CMAKE_SUPPORT_DIR
}
/gtest_CMakeLists.txt.in"
${
DEPS_TMP_FILE
}
)
endif
(
${
BUILD_TEST
}
)
## lz4
cat
(
"
${
CMAKE_SUPPORT_DIR
}
/lz4_CMakeLists.txt.in"
${
DEPS_TMP_FILE
}
)
## cJson
cat
(
"
${
CMAKE_SUPPORT_DIR
}
/cjson_CMakeLists.txt.in"
${
DEPS_TMP_FILE
}
)
## download dependencies
configure_file
(
${
DEPS_TMP_FILE
}
"
${
CMAKE_SOURCE_DIR
}
/deps/deps-download/CMakeLists.txt"
)
execute_process
(
COMMAND
"
${
CMAKE_COMMAND
}
"
-G
"
${
CMAKE_GENERATOR
}
"
.
...
...
@@ -36,6 +42,10 @@ execute_process(COMMAND "${CMAKE_COMMAND}" --build .
# deps
add_subdirectory
(
deps
)
# api
aux_source_directory
(
include/client API_SRC
)
add_library
(
api INTERFACE
${
API_SRC
}
)
# src
add_subdirectory
(
source
)
...
...
cmake/cjson_CMakeLists.txt.in
0 → 100644
浏览文件 @
01747537
# cjson
ExternalProject_Add(cjson
GIT_REPOSITORY git@github.com:taosdata-contrib/cJSON.git
GIT_TAG v1.7.15
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/cJson"
BINARY_DIR "${CMAKE_BINARY_DIR}/cJson-build"
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
TEST_COMMAND ""
)
\ No newline at end of file
cmake/gtest_CMakeLists.txt.in
浏览文件 @
01747537
# googletest
ExternalProject_Add(googletest
GIT_REPOSITORY git@github.com:
google
/googletest.git
GIT_TAG
master
GIT_REPOSITORY git@github.com:
taosdata-contrib
/googletest.git
GIT_TAG
release-1.11.0
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/googletest"
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
CONFIGURE_COMMAND ""
...
...
cmake/lz4_CMakeLists.txt.in
0 → 100644
浏览文件 @
01747537
# lz4
ExternalProject_Add(lz4
GIT_REPOSITORY git@github.com:taosdata-contrib/lz4.git
GIT_TAG v1.9.3
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/lz4"
BINARY_DIR "${CMAKE_BINARY_DIR}/lz4-build"
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
TEST_COMMAND ""
)
\ No newline at end of file
deps/CMakeLists.txt
浏览文件 @
01747537
if
(
${
BUILD_TEST
}
)
add_subdirectory
(
googletest
)
endif
(
${
BUILD_TEST
}
)
add_subdirectory
(
cJson
)
add_subdirectory
(
lz4/build/cmake
)
source/client/CMakeLists.txt
浏览文件 @
01747537
...
...
@@ -2,6 +2,9 @@ aux_source_directory(src CLIENT_SRC)
add_library
(
taos
${
CLIENT_SRC
}
)
target_include_directories
(
taos
PUBLIC
"
${
CMAKE_SOURCE_DIR
}
/include/client"
PRIVATE
"
${
CMAKE_CURRENT_SOURCE_DIR
}
/inc"
)
target_link_libraries
(
taos
INTERFACE api
)
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录