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-11 12:40:19 +00:00
|
|
|
if(MAKE_STATIC_LIBRARIES)
|
|
|
|
set(MAX_LINKER_MEMORY 3500)
|
2018-12-27 15:23:37 +00:00
|
|
|
else()
|
2019-01-11 12:40:19 +00:00
|
|
|
set(MAX_LINKER_MEMORY 2500)
|
|
|
|
endif()
|
|
|
|
include(../cmake/limit_jobs.cmake)
|
2018-12-27 15:23:37 +00:00
|
|
|
|
2018-08-23 16:06:13 +00:00
|
|
|
# Utils used in package
|
2016-02-07 21:58:58 +00:00
|
|
|
add_subdirectory (config-processor)
|
2018-03-28 02:32:54 +00:00
|
|
|
add_subdirectory (report)
|
2018-08-23 16:06:13 +00:00
|
|
|
|
|
|
|
# Not used in package
|
|
|
|
if (NOT DEFINED ENABLE_UTILS OR ENABLE_UTILS)
|
|
|
|
add_subdirectory (compressor)
|
|
|
|
add_subdirectory (iotest)
|
|
|
|
add_subdirectory (corrector_utf8)
|
|
|
|
add_subdirectory (zookeeper-cli)
|
|
|
|
add_subdirectory (zookeeper-dump-tree)
|
2018-12-12 16:19:34 +00:00
|
|
|
add_subdirectory (zookeeper-copy-tree)
|
2018-08-23 16:06:13 +00:00
|
|
|
add_subdirectory (zookeeper-remove-by-list)
|
|
|
|
add_subdirectory (zookeeper-create-entry-to-download-part)
|
2019-07-19 00:39:22 +00:00
|
|
|
add_subdirectory (zookeeper-adjust-block-numbers-to-parts)
|
2018-08-23 16:06:13 +00:00
|
|
|
add_subdirectory (wikistat-loader)
|
|
|
|
add_subdirectory (fill-factor)
|
|
|
|
add_subdirectory (check-marks)
|
|
|
|
add_subdirectory (test-data-generator)
|
2019-01-25 15:17:12 +00:00
|
|
|
add_subdirectory (convert-month-partitioned-parts)
|
2019-05-18 22:48:28 +00:00
|
|
|
add_subdirectory (checksum-for-compressed-block)
|
2018-08-23 16:06:13 +00:00
|
|
|
endif ()
|
2018-08-29 19:43:58 +00:00
|
|
|
|
|
|
|
if (ENABLE_CODE_QUALITY)
|
|
|
|
add_subdirectory (check-style)
|
|
|
|
endif ()
|
2019-06-28 03:30:35 +00:00
|
|
|
|
|
|
|
add_subdirectory (package)
|