2017-09-10 06:51:27 +00:00
if ( USE_INCLUDE_WHAT_YOU_USE )
set ( CMAKE_CXX_INCLUDE_WHAT_YOU_USE ${ IWYU_PATH } )
endif ( )
2019-01-11 12:40:19 +00:00
if ( COMPILER_PIPE )
set ( MAX_COMPILER_MEMORY 2500 )
2018-12-27 15:23:37 +00:00
else ( )
2019-01-11 12:40:19 +00:00
set ( MAX_COMPILER_MEMORY 1500 )
endif ( )
if ( MAKE_STATIC_LIBRARIES )
set ( MAX_LINKER_MEMORY 3500 )
else ( )
set ( MAX_LINKER_MEMORY 2500 )
endif ( )
include ( ../cmake/limit_jobs.cmake )
2018-12-27 15:23:37 +00:00
include ( cmake/find_vectorclass.cmake )
2017-03-14 13:47:39 +00:00
2017-04-01 09:19:00 +00:00
set ( CONFIG_VERSION ${ CMAKE_CURRENT_BINARY_DIR } /src/Common/config_version.h )
set ( CONFIG_COMMON ${ CMAKE_CURRENT_BINARY_DIR } /src/Common/config.h )
2017-03-14 13:47:39 +00:00
include ( cmake/version.cmake )
2019-04-03 14:06:59 +00:00
message ( STATUS "Will build ${VERSION_FULL} revision ${VERSION_REVISION} ${VERSION_OFFICIAL}" )
2018-12-27 15:23:37 +00:00
configure_file ( src/Common/config.h.in ${ CONFIG_COMMON } )
configure_file ( src/Common/config_version.h.in ${ CONFIG_VERSION } )
2017-03-14 13:47:39 +00:00
2018-03-02 00:17:25 +00:00
if ( NOT MSVC )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wextra" )
endif ( )
2017-12-01 17:49:12 +00:00
2017-01-19 19:30:58 +00:00
if ( NOT NO_WERROR )
2017-04-01 07:20:54 +00:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror" )
set ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror" )
2017-01-19 19:30:58 +00:00
endif ( )
2019-01-04 14:03:42 +00:00
# Add some warnings that are not available even with -Wall -Wextra -Wpedantic.
2018-09-02 00:34:34 +00:00
2019-01-04 13:32:08 +00:00
option ( WEVERYTHING "Enables -Weverything option with some exceptions. This is intended for exploration of new compiler warnings that may be found to be useful. Only makes sense for clang." ON )
2019-01-04 12:10:00 +00:00
2018-08-26 00:39:11 +00:00
if ( CMAKE_CXX_COMPILER_ID STREQUAL "Clang" )
2019-01-05 00:57:31 +00:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wpedantic -Wno-vla-extension -Wno-zero-length-array -Wno-gnu-anonymous-struct -Wno-nested-anon-types" )
2019-01-07 10:43:45 +00:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wshadow -Wshadow-uncaptured-local -Wextra-semi -Wcomma -Winconsistent-missing-destructor-override -Wunused-exception-parameter -Wcovered-switch-default -Wold-style-cast -Wrange-loop-analysis -Wunused-member-function -Wunreachable-code -Wunreachable-code-return -Wnewline-eof -Wembedded-directive -Wgnu-case-range -Wunused-macros -Wconditional-uninitialized -Wdeprecated -Wundef -Wreserved-id-macro -Wredundant-parens -Wzero-as-null-pointer-constant" )
2018-08-26 12:38:45 +00:00
2019-01-04 12:10:00 +00:00
if ( WEVERYTHING )
2019-01-05 00:45:32 +00:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Weverything -Wno-c++98-compat -Wno-c++98-compat-pedantic -Wno-missing-noreturn -Wno-padded -Wno-switch-enum -Wno-shadow-field-in-constructor -Wno-deprecated-dynamic-exception-spec -Wno-float-equal -Wno-weak-vtables -Wno-shift-sign-overflow -Wno-sign-conversion -Wno-conversion -Wno-exit-time-destructors -Wno-undefined-func-template -Wno-documentation-unknown-command -Wno-missing-variable-declarations -Wno-unused-template -Wno-global-constructors -Wno-c99-extensions -Wno-missing-prototypes -Wno-weak-template-vtables -Wno-zero-length-array -Wno-gnu-anonymous-struct -Wno-nested-anon-types -Wno-double-promotion -Wno-disabled-macro-expansion -Wno-used-but-marked-unused -Wno-vla-extension -Wno-vla -Wno-packed" )
2019-01-04 14:03:42 +00:00
2019-01-05 01:11:17 +00:00
# TODO Enable conversion, sign-conversion, double-promotion warnings.
2019-01-05 00:45:32 +00:00
endif ( )
2019-01-05 00:47:51 +00:00
if ( NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7 )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}" )
if ( WEVERYTHING )
2019-01-05 01:11:17 +00:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-return-std-move-in-c++11" )
2019-01-05 00:47:51 +00:00
endif ( )
endif ( )
if ( NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8 )
2019-03-23 23:31:29 +00:00
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wextra-semi-stmt -Wshadow-field -Wstring-plus-int -Wempty-init-stmt" )
2019-01-05 00:47:51 +00:00
endif ( )
2019-03-06 00:44:25 +00:00
if ( NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9 )
if ( WEVERYTHING )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-ctad-maybe-unsupported" )
endif ( )
endif ( )
2018-08-26 00:39:11 +00:00
endif ( )
2018-08-29 00:03:07 +00:00
if ( USE_DEBUG_HELPERS )
2018-09-05 18:50:17 +00:00
set ( INCLUDE_DEBUG_HELPERS "-include ${ClickHouse_SOURCE_DIR}/libs/libcommon/include/common/iostream_debug_helpers.h" )
set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${INCLUDE_DEBUG_HELPERS}" )
2018-08-29 00:03:07 +00:00
endif ( )
2018-09-03 17:45:52 +00:00
if ( CMAKE_CXX_COMPILER_ID STREQUAL "GNU" )
# If we leave this optimization enabled, gcc-7 replaces a pair of SSE intrinsics (16 byte load, store) with a call to memcpy.
# It leads to slow code. This is compiler bug. It looks like this:
#
# (gdb) bt
#0 memcpy (destination=0x7faa6e9f1638, source=0x7faa81d9e9a8, size=16) at ../libs/libmemcpy/memcpy.h:11
#1 0x0000000005341c5f in _mm_storeu_si128 (__B=..., __P=<optimized out>) at /usr/lib/gcc/x86_64-linux-gnu/7/include/emmintrin.h:720
#2 memcpySmallAllowReadWriteOverflow15Impl (n=<optimized out>, src=<optimized out>, dst=<optimized out>) at ../dbms/src/Common/memcpySmall.h:37
add_definitions ( "-fno-tree-loop-distribute-patterns" )
endif ( )
2017-01-18 15:09:10 +00:00
add_subdirectory ( src )
2016-12-07 14:58:31 +00:00
2016-12-06 20:55:13 +00:00
set ( dbms_headers )
set ( dbms_sources )
2016-12-07 14:58:31 +00:00
2018-12-27 15:23:37 +00:00
include ( ../cmake/dbms_glob_sources.cmake )
2017-11-17 19:19:49 +00:00
2017-11-21 19:17:24 +00:00
add_headers_and_sources ( clickhouse_common_io src/Common )
add_headers_and_sources ( clickhouse_common_io src/Common/HashTable )
add_headers_and_sources ( clickhouse_common_io src/IO )
2017-11-17 19:19:49 +00:00
2017-04-03 19:57:07 +00:00
add_headers_and_sources ( dbms src/Core )
add_headers_and_sources ( dbms src/DataStreams )
add_headers_and_sources ( dbms src/DataTypes )
add_headers_and_sources ( dbms src/Databases )
add_headers_and_sources ( dbms src/Interpreters )
add_headers_and_sources ( dbms src/Interpreters/ClusterProxy )
add_headers_and_sources ( dbms src/Columns )
add_headers_and_sources ( dbms src/Storages )
add_headers_and_sources ( dbms src/Storages/Distributed )
add_headers_and_sources ( dbms src/Storages/MergeTree )
add_headers_and_sources ( dbms src/Client )
2018-06-10 19:22:49 +00:00
add_headers_and_sources ( dbms src/Formats )
2016-12-06 20:55:13 +00:00
2017-11-21 19:17:24 +00:00
list ( APPEND clickhouse_common_io_sources ${ CONFIG_BUILD } )
list ( APPEND clickhouse_common_io_headers ${ CONFIG_VERSION } ${ CONFIG_COMMON } )
2017-03-14 13:47:39 +00:00
2017-07-25 18:20:50 +00:00
list ( APPEND dbms_sources src/Functions/IFunction.cpp src/Functions/FunctionFactory.cpp src/Functions/FunctionHelpers.cpp )
2017-07-25 18:32:52 +00:00
list ( APPEND dbms_headers src/Functions/IFunction.h src/Functions/FunctionFactory.h src/Functions/FunctionHelpers.h )
2017-06-10 09:04:31 +00:00
2017-05-05 20:39:25 +00:00
list ( APPEND dbms_sources
s r c / A g g r e g a t e F u n c t i o n s / A g g r e g a t e F u n c t i o n F a c t o r y . c p p
2017-12-24 06:50:11 +00:00
s r c / A g g r e g a t e F u n c t i o n s / A g g r e g a t e F u n c t i o n C o m b i n a t o r F a c t o r y . c p p
2017-12-24 10:12:49 +00:00
s r c / A g g r e g a t e F u n c t i o n s / A g g r e g a t e F u n c t i o n S t a t e . c p p
2017-07-25 18:32:52 +00:00
s r c / A g g r e g a t e F u n c t i o n s / p a r s e A g g r e g a t e F u n c t i o n P a r a m e t e r s . c p p )
2017-05-05 20:39:25 +00:00
list ( APPEND dbms_headers
s r c / A g g r e g a t e F u n c t i o n s / I A g g r e g a t e F u n c t i o n . h
2017-12-24 06:50:11 +00:00
s r c / A g g r e g a t e F u n c t i o n s / I A g g r e g a t e F u n c t i o n C o m b i n a t o r . h
2017-05-05 20:39:25 +00:00
s r c / A g g r e g a t e F u n c t i o n s / A g g r e g a t e F u n c t i o n F a c t o r y . h
2017-12-24 06:50:11 +00:00
s r c / A g g r e g a t e F u n c t i o n s / A g g r e g a t e F u n c t i o n C o m b i n a t o r F a c t o r y . h
2017-12-24 10:12:49 +00:00
s r c / A g g r e g a t e F u n c t i o n s / A g g r e g a t e F u n c t i o n S t a t e . h
2017-12-20 20:25:22 +00:00
s r c / A g g r e g a t e F u n c t i o n s / F a c t o r y H e l p e r s . h
2017-07-25 18:32:52 +00:00
s r c / A g g r e g a t e F u n c t i o n s / p a r s e A g g r e g a t e F u n c t i o n P a r a m e t e r s . h )
2017-06-10 09:04:31 +00:00
2018-03-02 05:03:28 +00:00
list ( APPEND dbms_sources src/TableFunctions/ITableFunction.cpp src/TableFunctions/TableFunctionFactory.cpp )
2019-02-15 11:46:07 +00:00
list ( APPEND dbms_headers src/TableFunctions/ITableFunction.h src/TableFunctions/TableFunctionFactory.h )
list ( APPEND dbms_sources src/Dictionaries/DictionaryFactory.cpp src/Dictionaries/DictionarySourceFactory.cpp src/Dictionaries/DictionaryStructure.cpp )
list ( APPEND dbms_headers src/Dictionaries/DictionaryFactory.h src/Dictionaries/DictionarySourceFactory.h src/Dictionaries/DictionaryStructure.h )
2017-05-05 20:39:25 +00:00
2018-08-27 14:39:20 +00:00
add_library ( clickhouse_common_io ${ LINK_MODE } ${ clickhouse_common_io_headers } ${ clickhouse_common_io_sources } )
2017-11-17 19:19:49 +00:00
2018-08-05 08:54:57 +00:00
if ( OS_FREEBSD )
2018-02-27 17:17:02 +00:00
target_compile_definitions ( clickhouse_common_io PUBLIC CLOCK_MONOTONIC_COARSE=CLOCK_MONOTONIC_FAST )
endif ( )
2018-01-15 19:07:47 +00:00
add_subdirectory ( src/Common/ZooKeeper )
2018-02-28 20:34:25 +00:00
add_subdirectory ( src/Common/Config )
2018-01-15 19:07:47 +00:00
2019-03-04 17:47:31 +00:00
if ( MAKE_STATIC_LIBRARIES OR NOT SPLIT_SHARED_LIBRARIES )
2017-04-01 07:20:54 +00:00
add_library ( dbms ${ dbms_headers } ${ dbms_sources } )
2017-02-08 18:53:00 +00:00
else ( )
2017-04-01 07:20:54 +00:00
add_library ( dbms SHARED ${ dbms_headers } ${ dbms_sources } )
2017-02-08 18:53:00 +00:00
endif ( )
2016-12-06 20:55:13 +00:00
Add a JIT interface for row-wise default-nullable functions.
Not actually implemented, though. It does print out some jit-compiled stuff,
but that's about it. For example, this query:
select number from system.numbers where something(cast(number as Float64)) == 4
results in this on server's stderr:
define double @"something(CAST(number, 'Float64'))"(void**, i8*, void*) {
"something(CAST(number, 'Float64'))":
ret double 1.234500e+04
}
(and an exception, because that's what the non-jitted method does.)
As one may notice, this function neither reads the input (first argument;
tuple of arrays) nor writes the output (third argument; array), instead
returning some general nonsense.
In addition, `#if USE_EMBEDDED_COMPILER` doesn't work for some reason,
including LLVM headers requires -Wno-unused-parameter, this probably only
works on LLVM 5.0 due to rampant API instability, and I'm definitely
no expert on CMake. In short, there's still a long way to go.
2018-04-23 22:29:39 +00:00
if ( USE_EMBEDDED_COMPILER )
2018-05-29 17:54:48 +00:00
llvm_libs_all ( REQUIRED_LLVM_LIBRARIES )
2018-11-21 19:20:27 +00:00
target_link_libraries ( dbms PRIVATE ${ REQUIRED_LLVM_LIBRARIES } )
2018-06-06 20:21:58 +00:00
target_include_directories ( dbms SYSTEM BEFORE PUBLIC ${ LLVM_INCLUDE_DIRS } )
Add a JIT interface for row-wise default-nullable functions.
Not actually implemented, though. It does print out some jit-compiled stuff,
but that's about it. For example, this query:
select number from system.numbers where something(cast(number as Float64)) == 4
results in this on server's stderr:
define double @"something(CAST(number, 'Float64'))"(void**, i8*, void*) {
"something(CAST(number, 'Float64'))":
ret double 1.234500e+04
}
(and an exception, because that's what the non-jitted method does.)
As one may notice, this function neither reads the input (first argument;
tuple of arrays) nor writes the output (third argument; array), instead
returning some general nonsense.
In addition, `#if USE_EMBEDDED_COMPILER` doesn't work for some reason,
including LLVM headers requires -Wno-unused-parameter, this probably only
works on LLVM 5.0 due to rampant API instability, and I'm definitely
no expert on CMake. In short, there's still a long way to go.
2018-04-23 22:29:39 +00:00
endif ( )
2016-12-06 20:55:13 +00:00
2017-10-25 18:39:10 +00:00
if ( CMAKE_BUILD_TYPE_UC STREQUAL "RELEASE" OR CMAKE_BUILD_TYPE_UC STREQUAL "RELWITHDEBINFO" OR CMAKE_BUILD_TYPE_UC STREQUAL "MINSIZEREL" )
2017-04-01 07:20:54 +00:00
# Won't generate debug info for files with heavy template instantiation to achieve faster linking and lower size.
set_source_files_properties (
s r c / D i c t i o n a r i e s / F l a t D i c t i o n a r y . c p p
s r c / D i c t i o n a r i e s / H a s h e d D i c t i o n a r y . c p p
s r c / D i c t i o n a r i e s / C a c h e D i c t i o n a r y . c p p
2017-05-12 21:23:12 +00:00
s r c / D i c t i o n a r i e s / T r i e D i c t i o n a r y . c p p
2017-04-01 07:20:54 +00:00
s r c / D i c t i o n a r i e s / R a n g e H a s h e d D i c t i o n a r y . c p p
s r c / D i c t i o n a r i e s / C o m p l e x K e y H a s h e d D i c t i o n a r y . c p p
s r c / D i c t i o n a r i e s / C o m p l e x K e y C a c h e D i c t i o n a r y . c p p
2017-10-24 13:30:44 +00:00
s r c / D i c t i o n a r i e s / C o m p l e x K e y C a c h e D i c t i o n a r y _ g e n e r a t e 1 . c p p
s r c / D i c t i o n a r i e s / C o m p l e x K e y C a c h e D i c t i o n a r y _ g e n e r a t e 2 . c p p
s r c / D i c t i o n a r i e s / C o m p l e x K e y C a c h e D i c t i o n a r y _ g e n e r a t e 3 . c p p
s r c / D i c t i o n a r i e s / O D B C B l o c k I n p u t S t r e a m . c p p
s r c / D i c t i o n a r i e s / H T T P D i c t i o n a r y S o u r c e . c p p
s r c / D i c t i o n a r i e s / L i b r a r y D i c t i o n a r y S o u r c e . c p p
s r c / D i c t i o n a r i e s / E x e c u t a b l e D i c t i o n a r y S o u r c e . c p p
s r c / D i c t i o n a r i e s / C l i c k H o u s e D i c t i o n a r y S o u r c e . c p p
2017-04-01 07:20:54 +00:00
P R O P E R T I E S C O M P I L E _ F L A G S - g 0 )
2016-12-01 22:44:59 +00:00
endif ( )
2016-03-12 05:53:04 +00:00
2017-11-21 19:17:24 +00:00
target_link_libraries ( clickhouse_common_io
2018-11-21 19:20:27 +00:00
P U B L I C
2017-04-01 07:20:54 +00:00
c o m m o n
2018-11-21 19:20:27 +00:00
P R I V A T E
2017-11-17 19:40:27 +00:00
s t r i n g _ u t i l s
2018-09-29 14:14:29 +00:00
w i d e c h a r _ w i d t h
2017-11-17 19:19:49 +00:00
$ { L I N K _ L I B R A R I E S _ O N L Y _ O N _ X 8 6 _ 6 4 }
2019-03-14 20:52:10 +00:00
P U B L I C
2017-08-09 20:52:55 +00:00
$ { D O U B L E _ C O N V E R S I O N _ L I B R A R I E S }
2019-03-14 20:52:10 +00:00
P R I V A T E
2018-11-21 19:20:27 +00:00
p o c o e x t
P U B L I C
2017-11-17 19:40:27 +00:00
$ { P o c o _ N e t _ L I B R A R Y }
2018-09-14 19:48:51 +00:00
$ { P o c o _ U t i l _ L I B R A R Y }
$ { P o c o _ F o u n d a t i o n _ L I B R A R Y }
2018-11-21 19:20:27 +00:00
$ { R E 2 _ L I B R A R Y }
$ { R E 2 _ S T _ L I B R A R Y }
$ { C I T Y H A S H _ L I B R A R I E S }
P R I V A T E
2018-01-15 18:57:10 +00:00
$ { Z L I B _ L I B R A R I E S }
2017-12-13 19:07:12 +00:00
$ { E X E C I N F O _ L I B R A R Y }
2018-05-14 21:37:56 +00:00
$ { E L F _ L I B R A R Y }
2018-11-21 19:20:27 +00:00
P U B L I C
2018-01-15 18:57:10 +00:00
$ { B o o s t _ S Y S T E M _ L I B R A R Y }
2018-11-21 19:20:27 +00:00
P R I V A T E
2018-07-20 16:56:39 +00:00
a p p l e _ r t
2019-01-28 18:21:20 +00:00
P U B L I C
T h r e a d s : : T h r e a d s
P R I V A T E
2018-01-20 02:35:16 +00:00
$ { C M A K E _ D L _ L I B S }
2019-02-15 07:02:08 +00:00
P U B L I C
2019-03-06 00:44:25 +00:00
r o a r i n g
2017-11-17 19:19:49 +00:00
)
2019-02-02 13:52:20 +00:00
2019-01-31 16:48:37 +00:00
target_include_directories ( clickhouse_common_io SYSTEM BEFORE PUBLIC ${ RE2_INCLUDE_DIR } )
2019-01-28 13:16:08 +00:00
if ( CPUID_LIBRARY )
target_link_libraries ( clickhouse_common_io PRIVATE ${ CPUID_LIBRARY } )
endif ( )
if ( CPUINFO_LIBRARY )
target_link_libraries ( clickhouse_common_io PRIVATE ${ CPUINFO_LIBRARY } )
2018-12-28 18:15:26 +00:00
endif ( )
2017-11-17 19:19:49 +00:00
target_link_libraries ( dbms
2018-11-21 19:20:27 +00:00
P R I V A T E
2018-12-28 18:15:26 +00:00
c l i c k h o u s e _ c o m p r e s s i o n
2017-11-21 19:17:24 +00:00
c l i c k h o u s e _ p a r s e r s
2018-02-28 20:34:25 +00:00
c l i c k h o u s e _ c o m m o n _ c o n f i g
2018-11-21 19:20:27 +00:00
P U B L I C
2017-11-24 13:55:31 +00:00
c l i c k h o u s e _ c o m m o n _ i o
2018-11-28 11:37:12 +00:00
P R I V A T E
c l i c k h o u s e _ d i c t i o n a r i e s _ e m b e d d e d
2018-11-21 19:20:27 +00:00
P U B L I C
2018-11-28 11:37:12 +00:00
p o c o e x t
2017-11-17 19:19:49 +00:00
$ { M Y S Q L X X _ L I B R A R Y }
2018-11-21 19:20:27 +00:00
P R I V A T E
2017-08-09 20:52:55 +00:00
$ { B T R I E _ L I B R A R I E S }
2018-08-20 15:34:37 +00:00
$ { B o o s t _ P R O G R A M _ O P T I O N S _ L I B R A R Y }
2018-11-21 19:20:27 +00:00
P U B L I C
$ { B o o s t _ S Y S T E M _ L I B R A R Y }
2019-01-28 18:21:20 +00:00
T h r e a d s : : T h r e a d s
2017-03-28 20:30:57 +00:00
)
2019-03-05 11:13:31 +00:00
target_include_directories ( dbms SYSTEM BEFORE PUBLIC ${ PDQSORT_INCLUDE_DIR } )
2018-01-11 18:39:52 +00:00
2018-01-15 18:57:10 +00:00
if ( NOT USE_INTERNAL_BOOST_LIBRARY )
2018-06-06 20:21:58 +00:00
target_include_directories ( clickhouse_common_io SYSTEM BEFORE PUBLIC ${ Boost_INCLUDE_DIRS } )
2018-01-15 18:57:10 +00:00
endif ( )
2018-09-14 19:48:51 +00:00
if ( Poco_SQL_FOUND AND NOT USE_INTERNAL_POCO_LIBRARY )
target_include_directories ( clickhouse_common_io SYSTEM PRIVATE ${ Poco_SQL_INCLUDE_DIR } )
target_include_directories ( dbms SYSTEM PRIVATE ${ Poco_SQL_INCLUDE_DIR } )
endif ( )
2018-05-14 18:36:01 +00:00
if ( USE_POCO_SQLODBC )
2018-11-21 19:20:27 +00:00
target_link_libraries ( clickhouse_common_io PRIVATE ${ Poco_SQL_LIBRARY } )
target_link_libraries ( dbms PRIVATE ${ Poco_SQLODBC_LIBRARY } ${ Poco_SQL_LIBRARY } )
2018-04-06 12:07:40 +00:00
if ( NOT USE_INTERNAL_POCO_LIBRARY )
2018-09-14 19:48:51 +00:00
target_include_directories ( clickhouse_common_io SYSTEM PRIVATE ${ ODBC_INCLUDE_DIRECTORIES } ${ Poco_SQL_INCLUDE_DIR } )
target_include_directories ( dbms SYSTEM PRIVATE ${ ODBC_INCLUDE_DIRECTORIES } ${ Poco_SQLODBC_INCLUDE_DIR } PUBLIC ${ Poco_SQL_INCLUDE_DIR } )
2018-04-06 12:07:40 +00:00
endif ( )
endif ( )
2018-09-14 19:48:51 +00:00
if ( Poco_Data_FOUND )
target_include_directories ( clickhouse_common_io SYSTEM PRIVATE ${ Poco_Data_INCLUDE_DIR } )
target_include_directories ( dbms SYSTEM PRIVATE ${ Poco_Data_INCLUDE_DIR } )
2018-04-03 11:48:40 +00:00
endif ( )
2018-05-14 18:36:01 +00:00
if ( USE_POCO_DATAODBC )
2018-11-21 19:20:27 +00:00
target_link_libraries ( clickhouse_common_io PRIVATE ${ Poco_Data_LIBRARY } )
target_link_libraries ( dbms PRIVATE ${ Poco_DataODBC_LIBRARY } )
2018-04-06 12:07:40 +00:00
if ( NOT USE_INTERNAL_POCO_LIBRARY )
2018-09-14 19:48:51 +00:00
target_include_directories ( dbms SYSTEM PRIVATE ${ ODBC_INCLUDE_DIRECTORIES } ${ Poco_DataODBC_INCLUDE_DIR } )
2018-04-06 12:07:40 +00:00
endif ( )
2017-03-28 20:30:57 +00:00
endif ( )
2018-05-14 18:36:01 +00:00
if ( USE_POCO_MONGODB )
2018-11-21 19:20:27 +00:00
target_link_libraries ( dbms PRIVATE ${ Poco_MongoDB_LIBRARY } )
2017-03-28 20:30:57 +00:00
endif ( )
2018-05-14 18:36:01 +00:00
if ( USE_POCO_NETSSL )
2018-11-21 19:20:27 +00:00
target_link_libraries ( clickhouse_common_io PRIVATE ${ Poco_NetSSL_LIBRARY } ${ Poco_Crypto_LIBRARY } )
target_link_libraries ( dbms PRIVATE ${ Poco_NetSSL_LIBRARY } ${ Poco_Crypto_LIBRARY } )
2017-03-28 20:30:57 +00:00
endif ( )
2018-11-21 19:20:27 +00:00
target_link_libraries ( dbms PRIVATE ${ Poco_Foundation_LIBRARY } )
2017-04-23 19:17:51 +00:00
if ( USE_ICU )
2018-11-27 15:34:21 +00:00
target_link_libraries ( dbms PRIVATE ${ ICU_LIBRARIES } )
2019-02-02 11:09:22 +00:00
target_include_directories ( dbms SYSTEM PRIVATE ${ ICU_INCLUDE_DIRS } )
2017-04-23 19:17:51 +00:00
endif ( )
2017-10-04 00:00:22 +00:00
if ( USE_CAPNP )
2018-11-21 19:20:27 +00:00
target_link_libraries ( dbms PRIVATE ${ CAPNP_LIBRARY } )
2018-01-11 18:39:52 +00:00
if ( NOT USE_INTERNAL_CAPNP_LIBRARY )
2018-06-06 20:21:58 +00:00
target_include_directories ( dbms SYSTEM BEFORE PRIVATE ${ CAPNP_INCLUDE_DIR } )
2018-01-11 18:39:52 +00:00
endif ( )
endif ( )
if ( USE_RDKAFKA )
2019-02-12 11:17:46 +00:00
target_link_libraries ( dbms PRIVATE clickhouse_storage_kafka )
2017-10-04 00:00:22 +00:00
endif ( )
2018-10-01 16:44:55 +00:00
if ( USE_PARQUET )
2019-02-19 20:51:44 +00:00
target_link_libraries ( dbms PRIVATE ${ PARQUET_LIBRARY } )
if ( NOT USE_INTERNAL_PARQUET_LIBRARY OR USE_INTERNAL_PARQUET_LIBRARY_NATIVE_CMAKE )
target_include_directories ( dbms SYSTEM BEFORE PRIVATE ${ PARQUET_INCLUDE_DIR } ${ ARROW_INCLUDE_DIR } )
2018-10-01 16:44:55 +00:00
endif ( )
endif ( )
2018-05-05 16:21:59 +00:00
2019-03-22 11:18:24 +00:00
if ( OPENSSL_CRYPTO_LIBRARY )
target_link_libraries ( dbms PRIVATE ${ OPENSSL_CRYPTO_LIBRARY } )
endif ( )
target_link_libraries ( dbms PRIVATE Threads::Threads )
2017-02-22 14:34:36 +00:00
2018-06-06 20:21:58 +00:00
target_include_directories ( dbms SYSTEM BEFORE PRIVATE ${ DIVIDE_INCLUDE_DIR } )
target_include_directories ( dbms SYSTEM BEFORE PRIVATE ${ SPARCEHASH_INCLUDE_DIR } )
2018-12-05 13:24:45 +00:00
2019-01-25 20:02:03 +00:00
if ( USE_PROTOBUF )
target_link_libraries ( dbms PRIVATE ${ Protobuf_LIBRARY } )
target_include_directories ( dbms SYSTEM BEFORE PRIVATE ${ Protobuf_INCLUDE_DIR } )
endif ( )
2019-01-23 19:19:23 +00:00
2018-12-05 13:24:45 +00:00
if ( USE_HDFS )
2019-01-17 11:26:29 +00:00
target_link_libraries ( clickhouse_common_io PRIVATE ${ HDFS3_LIBRARY } )
target_include_directories ( clickhouse_common_io SYSTEM BEFORE PRIVATE ${ HDFS3_INCLUDE_DIR } )
2018-12-05 13:24:45 +00:00
endif ( )
2017-10-13 20:52:42 +00:00
2019-02-02 13:33:50 +00:00
if ( USE_BROTLI )
target_link_libraries ( clickhouse_common_io PRIVATE ${ BROTLI_LIBRARY } )
target_include_directories ( clickhouse_common_io SYSTEM BEFORE PRIVATE ${ BROTLI_INCLUDE_DIR } )
endif ( )
2018-11-01 14:07:14 +00:00
if ( USE_JEMALLOC )
target_include_directories ( dbms SYSTEM BEFORE PRIVATE ${ JEMALLOC_INCLUDE_DIR } ) # used in Interpreters/AsynchronousMetrics.cpp
endif ( )
2017-06-23 20:22:35 +00:00
target_include_directories ( dbms PUBLIC ${ DBMS_INCLUDE_DIR } )
2017-11-21 19:17:24 +00:00
target_include_directories ( clickhouse_common_io PUBLIC ${ DBMS_INCLUDE_DIR } )
2018-06-06 20:21:58 +00:00
target_include_directories ( clickhouse_common_io SYSTEM PUBLIC ${ PCG_RANDOM_INCLUDE_DIR } )
target_include_directories ( clickhouse_common_io SYSTEM BEFORE PUBLIC ${ DOUBLE_CONVERSION_INCLUDE_DIR } )
2017-10-14 00:53:01 +00:00
2017-11-17 19:19:49 +00:00
# also for copy_headers.sh:
2017-11-21 19:17:24 +00:00
target_include_directories ( clickhouse_common_io BEFORE PRIVATE ${ COMMON_INCLUDE_DIR } )
2017-08-09 20:52:55 +00:00
2018-06-05 20:09:51 +00:00
add_subdirectory ( programs )
2017-12-27 19:01:57 +00:00
add_subdirectory ( tests )
2019-01-25 20:02:03 +00:00
if ( ENABLE_TESTS AND USE_GTEST )
2018-08-26 01:41:08 +00:00
macro ( grep_gtest_sources BASE_DIR DST_VAR )
2018-01-09 17:27:02 +00:00
# Cold match files that are not in tests/ directories
file ( GLOB_RECURSE "${DST_VAR}" RELATIVE "${BASE_DIR}" "gtest*.cpp" )
endmacro ( )
2017-04-01 07:20:54 +00:00
# attach all dbms gtest sources
grep_gtest_sources ( ${ ClickHouse_SOURCE_DIR } /dbms dbms_gtest_sources )
add_executable ( unit_tests_dbms ${ dbms_gtest_sources } )
2019-03-14 20:52:10 +00:00
target_link_libraries ( unit_tests_dbms PRIVATE ${ GTEST_BOTH_LIBRARIES } dbms clickhouse_common_zookeeper )
2017-04-01 07:20:54 +00:00
add_check ( unit_tests_dbms )
2017-04-10 17:43:30 +00:00
endif ( )