* Sync up to trunk HEAD (r62285). Branch guys deserve the significant speedups too ;)
[reactos.git] / dll / win32 / usp10 / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
3 add_definitions(-D__WINESRC__)
4 spec2def(usp10.dll usp10.spec ADD_IMPORTLIB)
5
6 list(APPEND SOURCE
7 bidi.c
8 breaking.c
9 indic.c
10 indicsyllable.c
11 linebreak.c
12 mirror.c
13 opentype.c
14 shape.c
15 shaping.c
16 usp10.c
17 usp10_internal.h
18 ${CMAKE_CURRENT_BINARY_DIR}/usp10_stubs.c)
19
20 add_library(usp10 SHARED
21 ${SOURCE}
22 ${CMAKE_CURRENT_BINARY_DIR}/usp10.def)
23
24 set_module_type(usp10 win32dll)
25 target_link_libraries(usp10 wine)
26 add_importlibs(usp10 advapi32 user32 gdi32 msvcrt kernel32 ntdll)
27 add_pch(usp10 usp10_internal.h SOURCE)
28 add_cd_file(TARGET usp10 DESTINATION reactos/system32 FOR all)