summaryrefslogtreecommitdiffstats
path: root/kalzium/src/data
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2019-06-27 16:35:25 +0200
committerSlávek Banko <[email protected]>2019-06-28 13:45:47 +0200
commitaca01d5a8b7d3de53fa34696e18c91db720a5ab6 (patch)
tree6b9b83c599cc5db58df8041ca5cf812e00bbd25e /kalzium/src/data
parent88af19c041ad4f1139f6f0a35cd1a4fe2018425f (diff)
downloadtdeedu-aca01d5a8b7d3de53fa34696e18c91db720a5ab6.tar.gz
tdeedu-aca01d5a8b7d3de53fa34696e18c91db720a5ab6.zip
Conversion to the cmake building system.
Add includes to UI files to resolve FTBFS. Signed-off-by: gregory guy <[email protected]> Signed-off-by: Slávek Banko <[email protected]> (cherry picked from commit d4a1613e9f119ae68c695ab60f8d9856d1a54a52)
Diffstat (limited to 'kalzium/src/data')
-rw-r--r--kalzium/src/data/CMakeLists.txt9
-rw-r--r--kalzium/src/data/toolpics/CMakeLists.txt6
2 files changed, 15 insertions, 0 deletions
diff --git a/kalzium/src/data/CMakeLists.txt b/kalzium/src/data/CMakeLists.txt
new file mode 100644
index 00000000..a2229e0f
--- /dev/null
+++ b/kalzium/src/data/CMakeLists.txt
@@ -0,0 +1,9 @@
+add_subdirectory( toolpics )
+
+
+##### other data
+
+install(
+ FILES bg.jpg data.xml knowledge.xml tools.xml
+ DESTINATION ${DATA_INSTALL_DIR}/kalzium/data
+)
diff --git a/kalzium/src/data/toolpics/CMakeLists.txt b/kalzium/src/data/toolpics/CMakeLists.txt
new file mode 100644
index 00000000..f1189d0d
--- /dev/null
+++ b/kalzium/src/data/toolpics/CMakeLists.txt
@@ -0,0 +1,6 @@
+file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.jpg *.png )
+
+install(
+ FILES ${_pics}
+ DESTINATION ${DATA_INSTALL_DIR}/kalzium/data/toolpics
+)