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