mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
9 lines
465 B
CMake
9 lines
465 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)
|
|
target_include_directories(readpassphrase PUBLIC .)
|