summaryrefslogtreecommitdiffstats
path: root/lib/CMakeLists.txt
blob: 645b05fce23d476addcb1165e49827a5e152dc85 (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
###############################################################################
# Trinity KOffice                                                             #
# ---------------                                                             #
# This file is licensed under the terms of GNU GPL v3 or later.               #
# Improvements and feedback are welcome.                                      #
###############################################################################

add_subdirectory(store)
add_subdirectory(kwmf)
add_subdirectory(kofficecore)
add_subdirectory(kofficeui)
add_subdirectory(koproperty)
tde_conditional_add_subdirectory(BUILD_KROSS kross)

# All applications except for Kexi need the following components
if (BUILD_CHALK OR BUILD_KARBON OR BUILD_KCHART OR BUILD_KGANTT OR
    BUILD_KFORMULA OR BUILD_KIVIO OR BUILD_KOSHELL OR BUILD_KPLATO OR
    BUILD_KPRESENTER OR BUILD_KSPREAD OR BUILD_KUGAR OR BUILD_KWORD)
  add_subdirectory(kotext)
  add_subdirectory(kformula)
  add_subdirectory(kopalette)
  tde_conditional_add_subdirectory(BUILD_KOPAINTER kopainter)
endif()

# kate: indent-width 2; replace-tabs true;