mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
28 lines
1.2 KiB
CMake
28 lines
1.2 KiB
CMake
|
|
||
|
list(APPEND TEXTFILES
|
||
|
textfiles/ExtraLargeLight.INI
|
||
|
textfiles/LargeFontsLight.INI
|
||
|
textfiles/RegularLight.INI
|
||
|
textfiles/ExtraLargeDark.INI
|
||
|
textfiles/LargeFontsDark.INI
|
||
|
textfiles/RegularDark.INI)
|
||
|
|
||
|
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/textfiles)
|
||
|
foreach(_file ${TEXTFILES})
|
||
|
get_filename_component(_file_name ${_file} NAME_WE)
|
||
|
string(REPLACE ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} _converted_file "${_file}")
|
||
|
string(REPLACE ${_file_name} "${_file_name}_utf16" _converted_file ${_converted_file})
|
||
|
set(_file ${CMAKE_CURRENT_SOURCE_DIR}/${_file})
|
||
|
set(_converted_file ${CMAKE_CURRENT_BINARY_DIR}/${_converted_file})
|
||
|
add_custom_command(OUTPUT ${_converted_file}
|
||
|
COMMAND native-utf16le ${_file} ${_converted_file}
|
||
|
DEPENDS native-utf16le ${_file})
|
||
|
list(APPEND _converted_files ${_converted_file})
|
||
|
endforeach()
|
||
|
|
||
|
set_source_files_properties(modern.rc PROPERTIES OBJECT_DEPENDS "${_converted_files}")
|
||
|
add_library(modern.msstyles SHARED modern.rc)
|
||
|
set_module_type(modern.msstyles module)
|
||
|
set_target_properties(modern.msstyles PROPERTIES SUFFIX "")
|
||
|
add_cd_file(TARGET modern.msstyles DESTINATION reactos/Resources/Themes/Modern FOR all)
|