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.
51 lines
1.1 KiB
51 lines
1.1 KiB
#################################################
|
|
#
|
|
# (C) 2021 Michele Calgaro
|
|
# Michele (DOT) Calgaro (AT) yahoo.it
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}/core
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${TQT_INCLUDE_DIRS}
|
|
${POLKIT_GOBJECT_INCLUDE_DIRS}
|
|
${POLKIT_AGENT_INCLUDE_DIRS}
|
|
)
|
|
|
|
link_directories(
|
|
${TQT_LIBRARY_DIRS}
|
|
)
|
|
|
|
|
|
##### install headers ###########################
|
|
|
|
install(
|
|
FILES
|
|
polkit-tqt-agent-session.h
|
|
polkit-tqt-agent-listener.h
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/${CMAKE_PROJECT_NAME}
|
|
)
|
|
|
|
|
|
##### polkit-tqt-agent (shared) #########################
|
|
|
|
tde_add_library( polkit-tqt-agent SHARED AUTOMOC
|
|
SOURCES
|
|
polkit-tqt-agent-session.cpp
|
|
polkit-tqt-agent-listener.cpp
|
|
listeneradapter.cpp
|
|
polkit-tqt-listener.cpp
|
|
VERSION 0.0.0
|
|
CXX_FEATURES cxx_nullptr
|
|
LINK polkit-tqt-core-shared
|
|
LINK_PRIVATE ${POLKIT_GOBJECT_LIBRARIES} ${POLKIT_AGENT_LIBRARIES}
|
|
DESTINATION ${LIB_INSTALL_DIR}
|
|
)
|