rublon-ssh/PAM/ssh/lib/CMakeLists.txt
Bartosz Wieczorek 843574499f ADD postMethod
2023-07-26 16:27:03 +02:00

33 lines
541 B
CMake

add_library(rublon-ssh-pam
SHARED
pam.cpp
)
target_compile_options(rublon-ssh-pam
PUBLIC
-fno-exceptions
-fno-rtti
-fvisibility=hidden
-ffunction-sections
-fdata-sections
-fno-unwind-tables
-fno-asynchronous-unwind-tables
-flto
)
target_link_options(rublon-ssh-pam
PUBLIC
-fpic
-s
-Wl,--gc-sections
-flto
)
target_link_libraries(rublon-ssh-pam
PUBLIC
rublon-ssh
-lcurl
-lssl
-lcrypto
)