Files
reactos/modules/wallpapers/CMakeLists.txt
Carl J. Bialorucki c32fa2c96c [WALLPAPERS] Reorganize wallpapers, make it more similar to 0.4.15 release (#9000)
- Rename wallpaper filenames so they make sense in the available wallpaper list
- Flatten folder structure
- Change the capitalization on file ReadMe.txt to README.txt
- Add a license column in README.txt to describe license of each wallpaper
Note: The licenses for Silhouette.png and Silhouette Dark.png could not be confirmed. Assumed CC-BY-4.0
- Removed CC-BY-4.0 LICENSE.txt from the wallpapers folder because that license doesn't apply to all the wallpapers in the folder.
- Remove suggestions.txt, most of the links are dead and hasn't been touched since 2005.
- Rename ReadMe.txt from Angelus folder to Angelus.txt (Should we just remove it?)
2026-05-28 16:03:30 -05:00

14 lines
384 B
CMake

file(GLOB WALLPAPER_FILES
"${CMAKE_CURRENT_SOURCE_DIR}/*.bmp"
"${CMAKE_CURRENT_SOURCE_DIR}/*.jpg"
"${CMAKE_CURRENT_SOURCE_DIR}/*.png"
"${CMAKE_CURRENT_SOURCE_DIR}/*.txt"
)
list(REMOVE_ITEM WALLPAPER_FILES "${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt")
foreach(f ${WALLPAPER_FILES})
add_cd_file(FILE "${f}" DESTINATION reactos/Web/Wallpaper FOR all)
endforeach()