1
0
mirror of https://github.com/falk-werner/webfuse synced 2025-05-31 22:44:26 +00:00

fixes cmake build error (missing openssl symbols)

This commit is contained in:
Falk Werner 2019-03-31 23:07:19 +02:00
parent 9cd355812a
commit 922c810a3d

View File

@ -187,6 +187,8 @@ install(FILES "${PROJECT_BINARY_DIR}/libwebfuse-provider.pc" DESTINATION lib${LI
# examples
pkg_check_modules(OPENSSL REQUIRED openssl)
if(NOT WITHOUT_EXAMPLE)
# libuserdb
@ -231,9 +233,6 @@ target_compile_options(webfuse-provider-app PUBLIC ${EXTRA_CFLAGS})
# webfuse-passwd
pkg_check_modules(OPENSSL REQUIRED openssl)
add_executable(webfuse-passwd
example/passwd/main.c
)