-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCMakeLists.txt
206 lines (183 loc) · 7.27 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
###############################################################################
# MIT License
#
# Copyright (c) 2022-2023 freemine <freemine@yeah.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
###############################################################################
cmake_minimum_required(VERSION 3.0...3.21)
project(taos_odbc)
set(TODBC_VERSION 0.1)
option(USE_SAN "whether to use sanitizer or not" OFF)
option(ENABLE_MYSQL_TEST "whether to test with mysql or not" OFF)
option(ENABLE_SQLITE3_TEST "whether to test with sqlite3 or not" OFF)
option(ENABLE_SQLSERVER_TEST "whether to test with sqlserver or not" OFF)
option(FAKE_TAOS "whether to fake `taos` or not" OFF)
option(FAKE_TAOSWS "whether to fake `taosws` or not" OFF)
option(WITH_TAOSWS "whether to build with taosws" ON)
# experimental
option(BUILD_TAOSWSD_EXPERIMENTAL "whether to build `taoswsd` or not" OFF)
message(STATUS "CMAKE_SYSTEM_NAME: ${CMAKE_SYSTEM_NAME}")
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(TODBC_LINUX TRUE)
set(TODBC_BUILD_TARGET_OSTYPE "Linux")
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(TODBC_DARWIN TRUE)
set(TODBC_BUILD_TARGET_OSTYPE "Darwin")
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
set(TODBC_WINDOWS TRUE)
set(TODBC_BUILD_TARGET_OSTYPE "Windows")
else()
message(FATAL_ERROR "Not ported on `${CMAKE_SYSTEM_NAME}`")
set(TODBC_BUILD_TARGET_OSTYPE "Unknow OS")
endif()
# judging platform architecture
message(STATUS "FAKE_TAOS: ${FAKE_TAOS}")
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
message(STATUS "Building for 64-bit platform")
set(TODBC_BUILD_TARGET_CPUTYPE "x64")
else()
message(STATUS "Building for 32-bit platform")
set(TODBC_BUILD_TARGET_CPUTYPE "x86")
set(TODBC_X86 TRUE)
if (NOT FAKE_TAOS)
set(FAKE_TAOS TRUE)
message(STATUS "Set FAKE_TAOS: ${FAKE_TAOS}")
endif()
endif()
string(TIMESTAMP TODBC_BUILD_DATE "%Y-%m-%d %H:%M:%S %z")
message(STATUS "Sys Info: ${TODBC_BUILD_TARGET_OSTYPE}-${TODBC_BUILD_TARGET_CPUTYPE}-${TODBC_BUILD_DATE}")
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 11)
if (TODBC_WINDOWS)
option(DISABLE_C5105 "whether to disable compiler warning C5105 or not" OFF)
option(USE_WIN_ICONV "whether to use win-iconv or not" OFF)
endif()
if(NOT TODBC_WINDOWS)
# add_compile_options(-Wall -Wextra -pedantic -Werror)
add_compile_options(-Wall -Wextra -Werror -O0 -DODBCVER=0x0351 -fvisibility=hidden)
else()
add_compile_options(/W3 /WX /DODBCVER=0x0351)
if(DISABLE_C5105)
add_compile_options(/wd5105)
endif()
endif()
include(CTest)
include(cmake/macros.cmake)
set_colorful()
check_requirements()
include_directories(inc)
if(TODBC_DARWIN)
include_directories(/usr/local/include)
link_directories(/usr/local/lib)
link_libraries(iconv)
endif()
if(TODBC_WINDOWS)
include_directories(C:/TDengine/include)
if(TODBC_X86)
link_directories(C:/TDengine/taos_odbc/x86/lib)
else()
link_directories(C:/TDengine/taos_odbc/x64/lib)
endif()
if(USE_WIN_ICONV)
include_directories(${ICONV_INSTALL_PATH}/include)
link_directories(${ICONV_INSTALL_PATH}/lib)
link_libraries(iconv)
endif()
#better set /source-charset:utf-8 for source-file-specific compile_options
#add_compile_options(/source-charset:utf-8)
add_compile_options(/DICONV_CONST=)
endif()
include_directories(${CMAKE_CURRENT_BINARY_DIR})
if(TODBC_DARWIN)
message(STATUS "USE_SAN is ${USE_SAN}")
if(USE_SAN)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -fsanitize=undefined -fsanitize-recover=all -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow -fno-sanitize=shift-base -fno-sanitize=alignment")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address -fsanitize=undefined -fsanitize-recover=all -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow -fno-sanitize=shift-base -fno-sanitize=alignment")
endif()
endif()
if(TODBC_WINDOWS)
if(NOT DEFINED SERVER_FOR_TEST)
message(FATAL_ERROR " you must define SERVER_FOR_TEST on windows platform,\n"
" because taosd is NOT included TDengine OSS since 3.1.x.x\n"
" eg.: -DSERVER_FOR_TEST:STRING=127.0.0.1:6030")
endif()
if(NOT DEFINED WS_FOR_TEST)
message(FATAL_ERROR " you must define WS_FOR_TEST on windows platform,\n"
" because taosd is NOT included TDengine OSS since 3.1.x.x\n"
" eg.: -DWS_FOR_TEST:STRING=127.0.0.1:6041")
endif()
endif()
if(NOT DEFINED SERVER_FOR_TEST)
set(SERVER_FOR_TEST "localhost:6030")
endif()
if(NOT DEFINED WS_FOR_TEST)
set(WS_FOR_TEST "localhost:6041")
endif()
if(DEFINED SERVER_FOR_TEST)
string(FIND "${SERVER_FOR_TEST}" ":" HP_POS)
if(${HP_POS} STREQUAL "-1")
set(HOST_FOR_TEST "${SERVER_FOR_TEST}")
else()
string(SUBSTRING ${SERVER_FOR_TEST} 0 ${HP_POS} HOST_FOR_TEST)
string(SUBSTRING ${SERVER_FOR_TEST} ${HP_POS} -1 PORT_FOR_TEST)
string(SUBSTRING ${PORT_FOR_TEST} 1 -1 PORT_FOR_TEST)
endif()
endif()
if(DEFINED WS_FOR_TEST)
string(FIND "${WS_FOR_TEST}" ":" HP_POS)
if(${HP_POS} STREQUAL "-1")
set(WS_HOST_FOR_TEST "${WS_FOR_TEST}")
else()
string(SUBSTRING ${WS_FOR_TEST} 0 ${HP_POS} WS_HOST_FOR_TEST)
string(SUBSTRING ${WS_FOR_TEST} ${HP_POS} -1 WS_PORT_FOR_TEST)
string(SUBSTRING ${WS_PORT_FOR_TEST} 1 -1 WS_PORT_FOR_TEST)
endif()
endif()
if(HAVE_GIT)
execute_process(COMMAND git log -1 --format=%H WORKING_DIRECTORY ${PROJECT_SOURCE_DIR} OUTPUT_VARIABLE GIT_COMMITID)
# message(STATUS "git log result:${GIT_COMMITID}")
if(GIT_COMMITID)
string (REGEX REPLACE "[\n\t\r]" "" GIT_COMMITID ${GIT_COMMITID})
SET(TODBC_BUILD_GIT ${GIT_COMMITID})
else()
message(STATUS "not a git repository")
SET(TODBC_BUILD_GIT "no git commit id")
endif()
else()
message(STATUS "no git found")
SET(TODBC_BUILD_GIT "no git commit id")
endif()
message(STATUS "Git Info: ${TODBC_BUILD_GIT}")
configure_file(inc/taos_odbc_config.h.in ${CMAKE_CURRENT_BINARY_DIR}/taos_odbc_config.h)
configure_file(inc/iconv_wrapper.h.in ${CMAKE_CURRENT_BINARY_DIR}/iconv_wrapper.h)
add_subdirectory(common)
add_subdirectory(src)
add_subdirectory(templates)
if(BUILD_TAOSWSD_EXPERIMENTAL)
add_subdirectory(taosws)
endif()
add_subdirectory(tests)
add_subdirectory(samples)
add_subdirectory(benchmark)
if (TODBC_WINDOWS)
if(USE_WIN_ICONV)
message(WARNING "you have chosen to use win-iconv, which is supposed to downgrade performance")
endif()
endif()