summaryrefslogtreecommitdiffstats
path: root/keduca/resources
diff options
context:
space:
mode:
authorgregory guy <g-gregory@gmx.fr>2019-06-27 16:35:25 +0200
committerSlávek Banko <slavek.banko@axis.cz>2019-06-27 16:35:25 +0200
commitd4a1613e9f119ae68c695ab60f8d9856d1a54a52 (patch)
tree6de888ef76667e28c81832dc104c19b158859b9b /keduca/resources
parent9fb4e1ccde0b89b413bfdc8ae62f8178ecad5483 (diff)
downloadtdeedu-d4a1613e9f119ae68c695ab60f8d9856d1a54a52.tar.gz
tdeedu-d4a1613e9f119ae68c695ab60f8d9856d1a54a52.zip
Conversion to the cmake building system.
Add includes to UI files to resolve FTBFS. Signed-off-by: gregory guy <g-gregory@gmx.fr> Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'keduca/resources')
-rw-r--r--keduca/resources/CMakeLists.txt20
-rw-r--r--keduca/resources/icons/CMakeLists.txt1
-rw-r--r--keduca/resources/pics/CMakeLists.txt6
3 files changed, 27 insertions, 0 deletions
diff --git a/keduca/resources/CMakeLists.txt b/keduca/resources/CMakeLists.txt
new file mode 100644
index 00000000..32000370
--- /dev/null
+++ b/keduca/resources/CMakeLists.txt
@@ -0,0 +1,20 @@
+add_subdirectory( pics )
+add_subdirectory( icons )
+
+
+##### icons
+
+tde_install_icons( )
+
+
+##### other data
+
+install(
+ FILES x-edu.desktop x-edugallery.desktop
+ DESTINATION ${MIME_INSTALL_DIR}/application
+)
+
+install(
+ FILES keduca.desktop keducabuilder.desktop
+ DESTINATION ${XDG_APPS_INSTALL_DIR}
+)
diff --git a/keduca/resources/icons/CMakeLists.txt b/keduca/resources/icons/CMakeLists.txt
new file mode 100644
index 00000000..3685661d
--- /dev/null
+++ b/keduca/resources/icons/CMakeLists.txt
@@ -0,0 +1 @@
+tde_install_icons( DESTINATION ${DATA_INSTALL_DIR}/keduca/icons )
diff --git a/keduca/resources/pics/CMakeLists.txt b/keduca/resources/pics/CMakeLists.txt
new file mode 100644
index 00000000..e1c4b28e
--- /dev/null
+++ b/keduca/resources/pics/CMakeLists.txt
@@ -0,0 +1,6 @@
+file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
+
+install(
+ FILES ${_pics}
+ DESTINATION ${DATA_INSTALL_DIR}/keduca/pics
+)