mirror of
https://github.com/LMMS/lmms.git
synced 2026-02-05 12:13:40 -05:00
A Wiki article pointed out that whitespace will only be preserved for parameters in CMake commands if passed strings will be appropriately quoted or escaped. http://cmake.org/Wiki/CMake/Language_Syntax#CMake_splits_arguments_unless_you_use_quotation_marks_or_escapes. Quoting was added so that more places should also handle file names correctly which contain space characters eventually. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
3 lines
98 B
CMake
3 lines
98 B
CMake
FILE(GLOB PNG_FILES *.png)
|
|
INSTALL(FILES ${PNG_FILES} DESTINATION "${LMMS_DATA_DIR}/backgrounds")
|