diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-01-08 22:21:09 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2026-01-20 19:07:47 +0900 |
| commit | 84136f93b36f0107deca190ebc105e3216b0638f (patch) | |
| tree | c3dcaff9a31760e7471822c09606a38ec9f8f4df /doc/scriptexamples | |
| parent | 111d9fbdfdbb78cdf3203c37761ecd5d422fa01c (diff) | |
| download | kvirc-feat/cmake-conversion.tar.gz kvirc-feat/cmake-conversion.zip | |
TEMP: cmakefeat/cmake-conversion
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'doc/scriptexamples')
| -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 |
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 +) |
