[CMAKE]
[reactos.git] / reactos / dll / cpl / intl / CMakeLists.txt
1
2 spec2def(intl.cpl intl.spec)
3
4 add_library(intl SHARED
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.rc
18 ${CMAKE_CURRENT_BINARY_DIR}/intl.def)
19
20 set_module_type(intl cpl UNICODE)
21
22 add_importlibs(intl
23 msvcrt
24 user32
25 comctl32
26 advapi32
27 setupapi
28 shell32
29 kernel32
30 ntdll)
31
32 add_pch(intl intl.h)
33 add_cd_file(TARGET intl DESTINATION reactos/system32 FOR all)