mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-24 23:23:54 +00:00
23 lines
592 B
Text
23 lines
592 B
Text
|
if (NOT DEFINED OPENMW_RESOURCES_ROOT)
|
||
|
return()
|
||
|
endif()
|
||
|
|
||
|
set(BUILTIN_DATA_MW_FILES
|
||
|
# Month names and date formatting
|
||
|
l10n/Calendar/de.yaml
|
||
|
l10n/Calendar/en.yaml
|
||
|
l10n/Calendar/ru.yaml
|
||
|
l10n/Calendar/sv.yaml
|
||
|
l10n/Calendar/fr.yaml
|
||
|
|
||
|
# Generic UI messages that can be reused by mods
|
||
|
l10n/Interface/gmst.yaml
|
||
|
|
||
|
# L10n for OpenMW menus and non-game-specific messages
|
||
|
l10n/OMWEngine/gmst.yaml
|
||
|
)
|
||
|
|
||
|
foreach (f ${BUILTIN_DATA_MW_FILES})
|
||
|
copy_resource_file("${CMAKE_CURRENT_SOURCE_DIR}/${f}" "${OPENMW_RESOURCES_ROOT}" "resources/vfs-mw/${f}")
|
||
|
endforeach (f)
|