Include PNG files in images_classic source group
Added support for PNG files in the images_classic directory by updating the CMake file glob pattern. This ensures that both SVG and PNG images are included in the build process.
This commit is contained in:
committed by
Kacper Donat
parent
8ae61aa7b2
commit
c90420ed2c
@@ -22,7 +22,9 @@ FILE(GLOB Images_Files RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
|
||||
SOURCE_GROUP("Images_dark-light" FILES ${Images_Files})
|
||||
|
||||
FILE(GLOB Images_Files2 RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/images_classic/*.svg")
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/images_classic/*.svg"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/images_classic/*.png"
|
||||
)
|
||||
|
||||
SOURCE_GROUP("images_classic" FILES ${Images_Files2})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user