diff options
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/CMakeLists.txt | 9 | ||||
| -rw-r--r-- | doc/man/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | doc/scriptexamples/CMakeLists.txt | 19 | ||||
| -rw-r--r-- | doc/scriptexamples/antiidle/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | doc/scriptexamples/minesweeper/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | doc/scriptexamples/mp3share/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | doc/scriptexamples/playing/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | doc/scriptexamples/runmenu/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | doc/scriptexamples/simplehttp/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | doc/scriptexamples/tutorial/CMakeLists.txt | 6 |
10 files changed, 62 insertions, 0 deletions
diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt new file mode 100644 index 0000000..e956c73 --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1,9 @@ +##### subfolders + +add_subdirectory( man ) +add_subdirectory( scriptexamples ) + +install( + FILES COPYING + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/license +) diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt new file mode 100644 index 0000000..9655073 --- /dev/null +++ b/doc/man/CMakeLists.txt @@ -0,0 +1,4 @@ +install( + FILES kvirc.1 + DESTINATION ${MAN_INSTALL_DIR}/man1 +) 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 +) |
