summaryrefslogtreecommitdiffstats
path: root/kgeography/data/flags
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2019-06-27 16:35:25 +0200
committerSlávek Banko <[email protected]>2019-06-27 16:35:25 +0200
commitd4a1613e9f119ae68c695ab60f8d9856d1a54a52 (patch)
tree6de888ef76667e28c81832dc104c19b158859b9b /kgeography/data/flags
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 <[email protected]> Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'kgeography/data/flags')
-rw-r--r--kgeography/data/flags/CMakeLists.txt12
-rw-r--r--kgeography/data/flags/italy/CMakeLists.txt6
2 files changed, 18 insertions, 0 deletions
diff --git a/kgeography/data/flags/CMakeLists.txt b/kgeography/data/flags/CMakeLists.txt
new file mode 100644
index 00000000..50e33a6b
--- /dev/null
+++ b/kgeography/data/flags/CMakeLists.txt
@@ -0,0 +1,12 @@
+add_subdirectory( italy )
+#add_subdirectory( svg )
+
+
+##### other data
+
+file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
+
+install(
+ FILES ${_pics}
+ DESTINATION ${DATA_INSTALL_DIR}/kgeography/flags
+)
diff --git a/kgeography/data/flags/italy/CMakeLists.txt b/kgeography/data/flags/italy/CMakeLists.txt
new file mode 100644
index 00000000..d11bdb54
--- /dev/null
+++ b/kgeography/data/flags/italy/CMakeLists.txt
@@ -0,0 +1,6 @@
+file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png )
+
+install(
+ FILES ${_pics}
+ DESTINATION ${DATA_INSTALL_DIR}/kgeography/flags/italy
+)