diff options
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 +) |
