diff options
author | Kozlov Dmitry <dima@server> | 2010-11-10 18:33:36 +0300 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-11-10 18:33:36 +0300 |
commit | 058e7ff66b8fbb1f9494ae5077e5294db288fb1c (patch) | |
tree | e5d4c535539681843efb80bb1f06a643cee88904 /accel-pptpd/auth/CMakeLists.txt | |
parent | 4d826710d0d30606da88ff3543a4b43521e404df (diff) | |
download | accel-ppp-058e7ff66b8fbb1f9494ae5077e5294db288fb1c.tar.gz accel-ppp-058e7ff66b8fbb1f9494ae5077e5294db288fb1c.zip |
cli: implemented following command list: show stat, show sessions, terminate (sessison)
Diffstat (limited to 'accel-pptpd/auth/CMakeLists.txt')
-rw-r--r-- | accel-pptpd/auth/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/accel-pptpd/auth/CMakeLists.txt b/accel-pptpd/auth/CMakeLists.txt index 69b18b7b..808e7d84 100644 --- a/accel-pptpd/auth/CMakeLists.txt +++ b/accel-pptpd/auth/CMakeLists.txt @@ -3,6 +3,10 @@ ADD_LIBRARY(auth_chap_md5 SHARED auth_chap_md5.c) ADD_LIBRARY(auth_mschap_v1 SHARED auth_mschap_v1.c) ADD_LIBRARY(auth_mschap_v2 SHARED auth_mschap_v2.c) +TARGET_LINK_LIBRARIES(auth_chap_md5 crypto) +TARGET_LINK_LIBRARIES(auth_mschap_v1 crypto) +TARGET_LINK_LIBRARIES(auth_mschap_v2 crypto) + INSTALL(TARGETS auth_pap auth_chap_md5 auth_mschap_v1 auth_mschap_v2 LIBRARY DESTINATION usr/lib/accel-pptp ) |