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 /pics | |
| 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 'pics')
| -rw-r--r-- | pics/CMakeLists.txt | 14 | ||||
| -rw-r--r-- | pics/coresmall/CMakeLists.txt | 6 | ||||
| -rw-r--r-- | pics/helppics/CMakeLists.txt | 6 |
3 files changed, 26 insertions, 0 deletions
diff --git a/pics/CMakeLists.txt b/pics/CMakeLists.txt new file mode 100644 index 0000000..0993407 --- /dev/null +++ b/pics/CMakeLists.txt @@ -0,0 +1,14 @@ +##### subfolders + +add_subdirectory( coresmall ) +add_subdirectory( helppics ) + + +##### this folder + +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/pics +) diff --git a/pics/coresmall/CMakeLists.txt b/pics/coresmall/CMakeLists.txt new file mode 100644 index 0000000..b97bbe0 --- /dev/null +++ b/pics/coresmall/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/pics/coresmall +) diff --git a/pics/helppics/CMakeLists.txt b/pics/helppics/CMakeLists.txt new file mode 100644 index 0000000..2ca7b50 --- /dev/null +++ b/pics/helppics/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${DATA_INSTALL_DIR}/${PROJECT_NAME}/help/en +) |
