We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db2fc68 commit 1f72eecCopy full SHA for 1f72eec
gui/icons/CMakeLists.txt
@@ -22,9 +22,12 @@ foreach(ICON ${GRASS_ICONS})
22
get_filename_component(FILE_NAME ${ICON} NAME)
23
add_custom_command(
24
OUTPUT ${GISBASE}/gui/icons/grass/${FILE_NAME}
25
- COMMAND ${CMAKE_COMMAND} -E copy ${ICON} ${GISBASE}/gui/icons/grass/
26
- COMMAND ${CMAKE_COMMAND} -E copy ${ICON} ${GISBASE}/docs/html/icons/)
+ COMMAND ${CMAKE_COMMAND} -E copy ${ICON} ${GISBASE}/gui/icons/grass/)
27
list(APPEND output_icons ${GISBASE}/gui/icons/grass/${FILE_NAME})
+
28
+ add_custom_command(
29
+ OUTPUT ${GISBASE}/docs/html/icons/${FILE_NAME}
30
+ COMMAND ${CMAKE_COMMAND} -E copy ${ICON} ${GISBASE}/docs/html/icons/)
31
list(APPEND output_icons ${GISBASE}/docs/html/icons/${FILE_NAME})
32
endforeach()
33
0 commit comments