forked from taosdata/taos-connector-odbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
100 lines (86 loc) · 3.7 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
###############################################################################
# MIT License
#
# Copyright (c) 2022-2023 freemine <[email protected]>
#
# 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)
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(TODBC_LINUX TRUE)
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
set(TODBC_DARWIN TRUE)
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Windows")
set(TODBC_WINDOWS TRUE)
else()
message(FATAL_ERROR "Not ported on `${CMAKE_SYSTEM_NAME}`")
endif()
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)
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 ${ICONV_INSTALL_PATH}/include)
link_directories(C:/TDengine/driver ${ICONV_INSTALL_PATH}/lib)
link_libraries(iconv)
#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()
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()
configure_file(inc/taos_odbc_config.h.in ${CMAKE_CURRENT_BINARY_DIR}/taos_odbc_config.h)
add_subdirectory(common)
add_subdirectory(src)
add_subdirectory(templates)
add_subdirectory(tests)
add_subdirectory(samples)
add_subdirectory(benchmark)