Sync with trunk revision 63128.
[reactos.git] / dll / cpl / intl / CMakeLists.txt
1
2 spec2def(intl.cpl intl.spec)
3
4 list(APPEND SOURCE
5 currency.c
6 date.c
7 generalp.c
8 intl.c
9 inplocale.c
10 numbers.c
11 time.c
12 misc.c
13 kblayouts.c
14 languages.c
15 advanced.c
16 sort.c
17 intl.h)
18
19 add_library(intl SHARED
20 ${SOURCE}
21 intl.rc
22 ${CMAKE_CURRENT_BINARY_DIR}/intl.def)
23
24 set_module_type(intl cpl UNICODE)
25
26 add_importlibs(intl
27 msvcrt
28 user32
29 comctl32
30 advapi32
31 setupapi
32 shell32
33 kernel32
34 ntdll)
35
36 add_pch(intl intl.h SOURCE)
37 add_cd_file(TARGET intl DESTINATION reactos/system32 FOR all)