[CMAKE]
[reactos.git] / dll / cpl / intl / CMakeLists.txt
1
2 set_unicode()
3 set_rc_compiler()
4
5 add_definitions(-D_DLL -D__USE_CRTIMP)
6
7 spec2def(intl.cpl intl.spec)
8
9 add_library(intl SHARED
10 currency.c
11 date.c
12 generalp.c
13 intl.c
14 inplocale.c
15 numbers.c
16 time.c
17 misc.c
18 kblayouts.c
19 languages.c
20 advanced.c
21 sort.c
22 intl.rc)
23
24 set_module_type(intl cpl)
25
26 add_importlibs(intl
27 msvcrt
28 user32
29 comctl32
30 advapi32
31 setupapi
32 shell32
33 kernel32)
34
35 add_cd_file(TARGET intl DESTINATION reactos/system32)