summaryrefslogtreecommitdiffstats
path: root/doc/scriptexamples
diff options
context:
space:
mode:
Diffstat (limited to 'doc/scriptexamples')
-rw-r--r--doc/scriptexamples/CMakeLists.txt19
-rw-r--r--doc/scriptexamples/antiidle/CMakeLists.txt4
-rw-r--r--doc/scriptexamples/minesweeper/CMakeLists.txt4
-rw-r--r--doc/scriptexamples/mp3share/CMakeLists.txt4
-rw-r--r--doc/scriptexamples/playing/CMakeLists.txt4
-rw-r--r--doc/scriptexamples/runmenu/CMakeLists.txt4
-rw-r--r--doc/scriptexamples/simplehttp/CMakeLists.txt4
-rw-r--r--doc/scriptexamples/tutorial/CMakeLists.txt6
8 files changed, 49 insertions, 0 deletions
diff --git a/doc/scriptexamples/CMakeLists.txt b/doc/scriptexamples/CMakeLists.txt
new file mode 100644
index 0000000..c02a3ce
--- /dev/null
+++ b/doc/scriptexamples/CMakeLists.txt
@@ -0,0 +1,19 @@
+##### subfolders
+
+add_subdirectory( antiidle )
+add_subdirectory( minesweeper )
+add_subdirectory( mp3share )
+add_subdirectory( playing )
+add_subdirectory( runmenu )
+add_subdirectory( simplehttp )
+add_subdirectory( tutorial )
+
+
+# this folder
+
+file( GLOB _kvs_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kvs )
+
+install(
+ FILES ${_kvs_files}
+ DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/doc/scriptexamples
+)
diff --git a/doc/scriptexamples/antiidle/CMakeLists.txt b/doc/scriptexamples/antiidle/CMakeLists.txt
new file mode 100644
index 0000000..9e34958
--- /dev/null
+++ b/doc/scriptexamples/antiidle/CMakeLists.txt
@@ -0,0 +1,4 @@
+install(
+ FILES antiidle.kvs
+ DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/doc/scriptexamples/antiidle
+)
diff --git a/doc/scriptexamples/minesweeper/CMakeLists.txt b/doc/scriptexamples/minesweeper/CMakeLists.txt
new file mode 100644
index 0000000..f65c164
--- /dev/null
+++ b/doc/scriptexamples/minesweeper/CMakeLists.txt
@@ -0,0 +1,4 @@
+install(
+ FILES minesweeper.kvs
+ DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/doc/scriptexamples/minesweeper
+)
diff --git a/doc/scriptexamples/mp3share/CMakeLists.txt b/doc/scriptexamples/mp3share/CMakeLists.txt
new file mode 100644
index 0000000..6aedf3b
--- /dev/null
+++ b/doc/scriptexamples/mp3share/CMakeLists.txt
@@ -0,0 +1,4 @@
+install(
+ FILES mp3share.kvs mp3share_icon.png
+ DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/doc/scriptexamples/mp3share
+)
diff --git a/doc/scriptexamples/playing/CMakeLists.txt b/doc/scriptexamples/playing/CMakeLists.txt
new file mode 100644
index 0000000..e57c048
--- /dev/null
+++ b/doc/scriptexamples/playing/CMakeLists.txt
@@ -0,0 +1,4 @@
+install(
+ FILES playing.kvs playing_icon.png
+ DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/doc/scriptexamples/playing
+)
diff --git a/doc/scriptexamples/runmenu/CMakeLists.txt b/doc/scriptexamples/runmenu/CMakeLists.txt
new file mode 100644
index 0000000..bd2e564
--- /dev/null
+++ b/doc/scriptexamples/runmenu/CMakeLists.txt
@@ -0,0 +1,4 @@
+install(
+ FILES runmenu.kvs
+ DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/doc/scriptexamples/runmenu
+)
diff --git a/doc/scriptexamples/simplehttp/CMakeLists.txt b/doc/scriptexamples/simplehttp/CMakeLists.txt
new file mode 100644
index 0000000..db1120b
--- /dev/null
+++ b/doc/scriptexamples/simplehttp/CMakeLists.txt
@@ -0,0 +1,4 @@
+install(
+ FILES simplehttp.kvs
+ DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/doc/scriptexamples/simplehttp
+)
diff --git a/doc/scriptexamples/tutorial/CMakeLists.txt b/doc/scriptexamples/tutorial/CMakeLists.txt
new file mode 100644
index 0000000..3c10e7a
--- /dev/null
+++ b/doc/scriptexamples/tutorial/CMakeLists.txt
@@ -0,0 +1,6 @@
+file( GLOB _kvs_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.kvs )
+
+install(
+ FILES ${_kvs_files}
+ DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/doc/scriptexamples/tutorial
+)