mirror of
https://github.com/reactos/reactos.git
synced 2026-06-02 01:11:03 +08:00
- 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?)
14 lines
384 B
CMake
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()
|