mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
9 lines
495 B
CMake
9 lines
495 B
CMake
# wget https://raw.githubusercontent.com/openssh/openssh-portable/master/openbsd-compat/readpassphrase.c
|
|
# wget https://raw.githubusercontent.com/openssh/openssh-portable/master/openbsd-compat/readpassphrase.h
|
|
|
|
add_library(readpassphrase readpassphrase.c)
|
|
|
|
set_target_properties(readpassphrase PROPERTIES LINKER_LANGUAGE C)
|
|
target_compile_options(readpassphrase PRIVATE -Wno-unused-result -Wno-reserved-id-macro -Wno-disabled-macro-expansion)
|
|
target_include_directories(readpassphrase PUBLIC .)
|