mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
47ad338cb2
* Get rid of lib_name.cmake * Refactor Boost and HyperScan libraries * Refactor lz4 * Fix build with xxHash
30 lines
952 B
CMake
30 lines
952 B
CMake
|
|
# TODO? Maybe recursive collect on all deps
|
|
|
|
get_property (dirs1 TARGET dbms PROPERTY INCLUDE_DIRECTORIES)
|
|
list(APPEND dirs ${dirs1})
|
|
|
|
get_property (dirs1 TARGET clickhouse_common_io PROPERTY INCLUDE_DIRECTORIES)
|
|
list(APPEND dirs ${dirs1})
|
|
|
|
get_property (dirs1 TARGET common PROPERTY INCLUDE_DIRECTORIES)
|
|
list(APPEND dirs ${dirs1})
|
|
|
|
get_property (dirs1 TARGET cityhash PROPERTY INCLUDE_DIRECTORIES)
|
|
list(APPEND dirs ${dirs1})
|
|
|
|
get_property (dirs1 TARGET roaring PROPERTY INCLUDE_DIRECTORIES)
|
|
list(APPEND dirs ${dirs1})
|
|
|
|
if (TARGET double-conversion)
|
|
get_property (dirs1 TARGET double-conversion PROPERTY INCLUDE_DIRECTORIES)
|
|
list(APPEND dirs ${dirs1})
|
|
endif ()
|
|
|
|
list(REMOVE_DUPLICATES dirs)
|
|
file (WRITE ${CMAKE_CURRENT_BINARY_DIR}/include_directories.txt "")
|
|
foreach (dir ${dirs})
|
|
string (REPLACE "${ClickHouse_SOURCE_DIR}" "." dir "${dir}")
|
|
file (APPEND ${CMAKE_CURRENT_BINARY_DIR}/include_directories.txt "-I ${dir} ")
|
|
endforeach ()
|