mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 20:32:36 +00:00
94c8f271c9
Implement IDC_INST_FILES_FOR_ASIAN checkbox action. It will install/uninstall "ReactOS JPN Package" in Japanese ReactOS. JIRA issue: CORE-12748
30 lines
606 B
CMake
30 lines
606 B
CMake
|
|
spec2def(intl.cpl intl.spec)
|
|
|
|
list(APPEND SOURCE
|
|
currency.c
|
|
date.c
|
|
generalp.c
|
|
intl.c
|
|
inplocale.c
|
|
numbers.c
|
|
time.c
|
|
misc.c
|
|
kblayouts.c
|
|
languages.c
|
|
advanced.c
|
|
sort.c
|
|
intl.h)
|
|
|
|
add_rc_deps(intl.rc ${CMAKE_CURRENT_SOURCE_DIR}/resources/applet.ico)
|
|
|
|
add_library(intl MODULE
|
|
${SOURCE}
|
|
intl.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/intl.def)
|
|
|
|
set_module_type(intl cpl UNICODE)
|
|
add_importlibs(intl user32 comctl32 advapi32 setupapi shlwapi shell32 msvcrt kernel32 ntdll)
|
|
add_pch(intl intl.h SOURCE)
|
|
add_cd_file(TARGET intl DESTINATION reactos/system32 FOR all)
|