Browse Source

* update cmake : fix install path, change library name

master
Alex 'AdUser' Z 7 years ago
parent
commit
3fe136099d
  1. 8
      src/CMakeLists.txt

8
src/CMakeLists.txt

@ -1,8 +1,8 @@
add_executable("oal-test" "testutil.c" "config.c" "ldapauth.c")
target_link_libraries("oal-test" "ldap")
add_library("openvpn-auth-ldap" SHARED "config.c" "ldapauth.c" "plugin.c")
target_link_libraries("openvpn-auth-ldap" "ldap")
set(CMAKE_SHARED_LIBRARY_PREFIX "")
add_library("openvpn-plugin-auth-ldap" SHARED "config.c" "ldapauth.c" "plugin.c")
target_link_libraries("openvpn-plugin-auth-ldap" "ldap")
install(TARGETS "openvpn-auth-ldap"
LIBRARY DESTINATION "${INSTALL_LIB}")
install(TARGETS "openvpn-plugin-auth-ldap" LIBRARY DESTINATION "${INSTALL_LIB}/openvpn")

Loading…
Cancel
Save