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.
polkit-tqt/gui/CMakeLists.txt

60 lines
1.4 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_CURRENT_BINARY_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${TQT_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
)
##### install headers ###########################
install( FILES
dummy-gui.h
DESTINATION ${INCLUDE_INSTALL_DIR} )
##### polkit-tqt-gui (shared) #########################
tde_add_library( polkit-tqt-gui SHARED AUTOMOC
SOURCES ${polkit_tqt_MOCS}
dummy-gui.cpp
VERSION 0.0.0
LINK ${TQT_LIBRARIES}
DESTINATION ${LIB_INSTALL_DIR}
)
## set(polkit_tqt_gui_SRCS
## polkittqt1-gui-action.cpp
## polkittqt1-gui-actionbutton.cpp
## polkittqt1-gui-actionbuttons.cpp
## )
##
## target_link_libraries(polkit-tqt-gui-1
## ${TQT_TQTCORE_LIBRARY}
## ${TQT_TQTGUI_LIBRARY}
## ${TQT_TQTDBUS_LIBRARY}
## ${POLKIT_LIBRARIES}
## polkit-tqt-core-1
## )
##
## set_target_properties(polkit-tqt-gui-1 PROPERTIES VERSION ${POLKITTQT-1_LIBRARY_VERSION}
## SOVERSION ${POLKITTQT-1_ABI_VERSION}
## DEFINE_SYMBOL MAKE_POLKITTQT1_LIB)
##
## install(TARGETS polkit-tqt-gui-1 ${INSTALL_TARGETS_DEFAULT_ARGS})