summaryrefslogtreecommitdiffstats
path: root/core/CMakeLists.txt
blob: 0d0e22859558b24c56d2b795298544b470ea840e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#################################################
#
#  (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
  CXX_FEATURES cxx_nullptr
  LINK ${TQT_LIBRARIES} ${POLKIT_GOBJECT_LIBRARIES}
  DESTINATION ${LIB_INSTALL_DIR}
)