cloudflare/ClickHouse
Publicmirrored fromhttps://github.com/cloudflare/ClickHouse
libs/CMakeLists.txt
20lines · modecode
unknown
| 1 | if (NOT NO_WERROR) |
| 2 | set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror") |
| 3 | set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror") |
| 4 | endif () |
| 5 | |
| 6 | add_subdirectory (libcommon) |
| 7 | add_subdirectory (libpocoext) |
| 8 | add_subdirectory (libdaemon) |
| 9 | |
| 10 | if (USE_INTERNAL_MEMCPY) |
| 11 | add_subdirectory (libmemcpy) |
| 12 | endif() |
| 13 | |
| 14 | if (GLIBC_COMPATIBILITY) |
| 15 | add_subdirectory (libglibc-compatibility) |
| 16 | endif () |
| 17 | |
| 18 | if (USE_MYSQL) |
| 19 | add_subdirectory (libmysqlxx) |
| 20 | endif () |