mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
17 lines
430 B
CMake
17 lines
430 B
CMake
file (GLOB SRCS src/*.cpp)
|
|
|
|
add_library (_poco_mongodb ${SRCS})
|
|
add_library (Poco::MongoDB ALIAS _poco_mongodb)
|
|
|
|
# TODO: remove these warning exclusions
|
|
target_compile_options (_poco_mongodb
|
|
PRIVATE
|
|
-Wno-old-style-cast
|
|
-Wno-unused-parameter
|
|
-Wno-zero-as-null-pointer-constant
|
|
)
|
|
|
|
target_include_directories (_poco_mongodb SYSTEM PUBLIC "include")
|
|
target_link_libraries (_poco_mongodb PUBLIC Poco::Net)
|
|
|