15 lines
219 B
CMake
15 lines
219 B
CMake
add_library(rublon-ssh-pam
|
|
SHARED
|
|
pam.cpp
|
|
)
|
|
|
|
target_link_options(rublon-ssh-pam
|
|
PUBLIC
|
|
-fpic -shared
|
|
)
|
|
|
|
target_link_libraries(rublon-ssh-pam
|
|
PUBLIC
|
|
-lcurl -lssl -lcrypto rublon-ssh
|
|
)
|