kdelibs/kdesu/CMakeLists.txt

68 lines
1.5 KiB
Text
Raw Normal View History

2014-11-13 01:04:59 +02:00
project(kdesu)
include_directories( ${KDE4_KPTY_INCLUDES} )
check_function_exists(setpriority HAVE_SETPRIORITY)
check_function_exists(getpeereid HAVE_GETPEEREID)
set(CMAKE_EXTRA_INCLUDE_FILES sys/socket.h)
check_type_size("struct ucred" STRUCT_UCRED) #defines HAVE_STRUCT_UCRED (bool) and STRUCT_UCRED (size, unused)
set(CMAKE_EXTRA_INCLUDE_FILES) #reset CMAKE_EXTRA_INCLUDE_FILES
configure_file(config-kdesu.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-kdesu.h )
find_package(Sudo)
add_feature_info(Sudo SUDO_FOUND "Needed for password caching in kdesu" "http://www.sudo.ws/")
2014-11-13 01:04:59 +02:00
########### next target ###############
set(kdesu_LIB_SRCS
client.cpp
process.cpp
kcookie.cpp
su.cpp
ssh.cpp
stub.cpp
)
2014-11-13 01:04:59 +02:00
add_library(kdesu ${LIBRARY_TYPE} ${kdesu_LIB_SRCS})
2014-11-13 01:04:59 +02:00
target_link_libraries(kdesu PRIVATE ${KDE4_KPTY_LIBS} )
target_link_libraries(kdesu PUBLIC ${QT_QTCORE_LIBRARY} )
2014-11-13 01:04:59 +02:00
if(SUDO_FOUND)
add_definitions(-DKDESU_USE_SUDO_DEFAULT)
endif(SUDO_FOUND)
2014-11-13 01:04:59 +02:00
set_target_properties(kdesu PROPERTIES
VERSION ${GENERIC_LIB_VERSION}
SOVERSION ${GENERIC_LIB_SOVERSION}
2014-11-13 01:04:59 +02:00
)
install(TARGETS kdesu EXPORT kdelibsLibraryTargets ${INSTALL_TARGETS_DEFAULT_ARGS} )
########### next target ###############
set(kdesu_stub_SRCS kdesu_stub.c )
add_executable(kdesu_stub ${kdesu_stub_SRCS})
2014-11-13 01:04:59 +02:00
install(TARGETS kdesu_stub DESTINATION ${LIBEXEC_INSTALL_DIR} )
########### install files ###############
install(FILES
kdesu_export.h
client.h
process.h
su.h
ssh.h
stub.h
defaults.h
DESTINATION ${INCLUDE_INSTALL_DIR}/kdesu
COMPONENT Devel
)