summaryrefslogtreecommitdiffstats
path: root/lib/CMakeLists.txt
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2024-09-30 00:04:56 +0300
committerPhilippe Mavridis <philippe.mavridis@yandex.com>2025-05-15 21:00:25 +0300
commit04e86613f67d171cc965fce64a4310c0d25c98e1 (patch)
tree08a85d43bc40568f94259601339ccd7e1de11773 /lib/CMakeLists.txt
parentcf85b9c285a2b9baa87c9d0cb9d683b48e82a475 (diff)
downloadkoffice-feat/cmake-port.tar.gz
koffice-feat/cmake-port.zip
WIP: CMake portfeat/cmake-port
Signed-off-by: Philippe Mavridis <philippe.mavridis@yandex.com>
Diffstat (limited to 'lib/CMakeLists.txt')
-rw-r--r--lib/CMakeLists.txt25
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
new file mode 100644
index 000000000..645b05fce
--- /dev/null
+++ b/lib/CMakeLists.txt
@@ -0,0 +1,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; \ No newline at end of file