ClickHouse/contrib/incbin-cmake/CMakeLists.txt
Alexey Milovidov 7b4d0cf9d5 Fix Darwin
2023-07-24 00:51:20 +02:00

9 lines
507 B
CMake

set(LIBRARY_DIR "${ClickHouse_SOURCE_DIR}/contrib/incbin")
add_library(_incbin INTERFACE)
target_include_directories(_incbin SYSTEM INTERFACE ${LIBRARY_DIR})
add_library(ch_contrib::incbin ALIAS _incbin)
# Warning "incbin is incompatible with bitcode. Using the library will break upload to App Store if you have bitcode enabled.
# Add `#define INCBIN_SILENCE_BITCODE_WARNING` before including this header to silence this warning."
target_compile_definitions(_inclin PUBLIC INCBIN_SILENCE_BITCODE_WARNING)