2017-06-10 09:04:31 +00:00
|
|
|
include(${ClickHouse_SOURCE_DIR}/cmake/dbms_glob_sources.cmake)
|
|
|
|
add_headers_and_sources(clickhouse_table_functions .)
|
|
|
|
|
2018-03-02 05:03:28 +00:00
|
|
|
list(REMOVE_ITEM clickhouse_table_functions_sources ITableFunction.cpp TableFunctionFactory.cpp)
|
2017-06-10 09:04:31 +00:00
|
|
|
list(REMOVE_ITEM clickhouse_table_functions_headers ITableFunction.h TableFunctionFactory.h)
|
|
|
|
|
2019-04-24 09:06:28 +00:00
|
|
|
add_library(clickhouse_table_functions ${clickhouse_table_functions_sources})
|
2019-07-03 16:53:20 +00:00
|
|
|
target_link_libraries(clickhouse_table_functions PRIVATE clickhouse_parsers clickhouse_storages_system dbms ${Poco_Foundation_LIBRARY})
|