mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
3269b1da57
* Use bundled libmariadbclient (CLICKHOUSE-3261) * wip * wip * wip * Update docs about git clone. move docs/en/development/build_*.sh -> utils/build/build_debian.sh
13 lines
282 B
CMake
13 lines
282 B
CMake
if (NOT NO_WERROR)
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
|
|
endif ()
|
|
|
|
add_subdirectory (libcommon)
|
|
add_subdirectory (libpocoext)
|
|
add_subdirectory (libdaemon)
|
|
|
|
if (USE_MYSQL)
|
|
add_subdirectory (libmysqlxx)
|
|
endif ()
|