summaryrefslogtreecommitdiffstats
path: root/certmanager/CMakeLists.txt
blob: 1f3317508484ec420ff8391dd5f5f5d7857858e7 (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
54
55
56
57
58
59
60
61
62
#################################################
#
#  (C) 2010-2011 Serghei Amelian
#  serghei (DOT) amelian (AT) gmail.com
#
#  Improvements and feedback are welcome
#
#  This file is released under GPL >= 2
#
#################################################

project( certmanager )

include( ConfigureChecks.cmake )

tde_import( libtdenetwork )

add_subdirectory( lib )
add_subdirectory( conf )
add_subdirectory( kwatchgnupg )
add_subdirectory( icons )

add_definitions( -DLIBKLEOPATRA_NO_COMPAT )

include_directories(
  ${CMAKE_CURRENT_BINARY_DIR}
  ${CMAKE_BINARY_DIR}
  ${CMAKE_CURRENT_SOURCE_DIR}/lib
  ${CMAKE_SOURCE_DIR}/libtdepim
  ${CMAKE_SOURCE_DIR}/libtdenetwork
  ${TDE_INCLUDE_DIR}
  ${TQT_INCLUDE_DIRS}
)

link_directories(
  ${TQT_LIBRARY_DIRS}
)


##### other data ################################

tde_create_translated_desktop(
  SOURCE kleopatra.desktop kleopatra_import.desktop
  PO_DIR certmanager-desktops
)

install( FILES kleopatraui.rc DESTINATION ${DATA_INSTALL_DIR}/kleopatra )


##### kleopatra (executable) ####################

tde_add_executable( kleopatra AUTOMOC
  SOURCES
    customactions.cpp aboutdata.cpp main.cpp certmanager.cpp
    hierarchyanalyser.cpp certificatewizard.ui certificatewizardimpl.cpp
    certificateinfowidget.ui certificateinfowidgetimpl.cpp
    crlview.cpp storedtransferjob.cpp certlistview.cpp
  LINK conf-static kleopatra-shared tdeutils-shared tdeabc-shared
  DESTINATION ${BIN_INSTALL_DIR}
)

tde_install_export( )