|
|
|
#################################################
|
|
|
|
#
|
|
|
|
# (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_CURRENT_SOURCE_DIR}
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
|
|
${TQT_INCLUDE_DIRS}
|
|
|
|
${POLKIT_GOBJECT_INCLUDE_DIRS}
|
|
|
|
)
|
|
|
|
|
|
|
|
link_directories(
|
|
|
|
${TQT_LIBRARY_DIRS}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
##### install headers ###########################
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES
|
|
|
|
polkit-tqt-actiondescription.h
|
|
|
|
polkit-tqt-authority.h
|
|
|
|
polkit-tqt-details.h
|
|
|
|
polkit-tqt-identity.h
|
|
|
|
polkit-tqt-subject.h
|
|
|
|
polkit-tqt-temporaryauthorization.h
|
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
##### polkit-tqt-core (shared) #########################
|
|
|
|
|
|
|
|
tde_add_library( polkit-tqt-core SHARED AUTOMOC
|
|
|
|
SOURCES ${polkit_tqt_core_MOCS}
|
|
|
|
polkit-tqt-actiondescription.cpp
|
|
|
|
polkit-tqt-authority.cpp
|
|
|
|
polkit-tqt-details.cpp
|
|
|
|
polkit-tqt-identity.cpp
|
|
|
|
polkit-tqt-subject.cpp
|
|
|
|
polkit-tqt-temporaryauthorization.cpp
|
|
|
|
VERSION 0.0.0
|
|
|
|
LINK ${TQT_LIBRARIES} ${POLKIT_GOBJECT_LIBRARIES}
|
|
|
|
DESTINATION ${LIB_INSTALL_DIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
##
|
|
|
|
## set_target_properties(polkit-tqt-core-1 PROPERTIES VERSION ${POLKITTQT-1_LIBRARY_VERSION}
|
|
|
|
## SOVERSION ${POLKITTQT-1_ABI_VERSION}
|
|
|
|
## DEFINE_SYMBOL MAKE_POLKIT_TQT_LIB)
|