You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
647 B
44 lines
647 B
5 years ago
|
include_directories(
|
||
|
${CMAKE_BINARY_DIR}
|
||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||
|
${CMAKE_CURRENT_SOURCE_DIR}
|
||
|
)
|
||
|
|
||
|
link_directories(
|
||
|
${TQT_LIBRARY_DIRS}
|
||
|
)
|
||
|
|
||
|
|
||
|
##### smartauthckpasswd (executable)
|
||
|
|
||
|
tde_add_executable( smartauthckpasswd
|
||
|
|
||
|
SOURCES
|
||
|
ckpasswd.c
|
||
|
xmalloc.c
|
||
|
messages.c
|
||
|
LINK
|
||
|
${CRYPT_LIBRARY}
|
||
|
${PAM_LIBRARIES}
|
||
|
|
||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||
|
)
|
||
|
|
||
|
|
||
|
##### smartauthmon (executable)
|
||
|
|
||
|
tde_add_executable( smartauthmon
|
||
|
|
||
|
SOURCES
|
||
|
smartauthmon.cpp
|
||
|
ckpass.c
|
||
|
xmalloc.c
|
||
|
messages.c
|
||
|
LINK
|
||
|
${CRYPT_LIBRARY}
|
||
|
${PAM_LIBRARIES}
|
||
|
${TQT_LIBRARIES}
|
||
|
|
||
|
DESTINATION ${BIN_INSTALL_DIR}
|
||
|
)
|