[USB-BRINGUP-TRUNK]
[reactos.git] / dll / win32 / usp10 / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
3 add_definitions(-D__WINESRC__)
4
5 spec2def(usp10.dll usp10.spec)
6
7 list(APPEND SOURCE
8 bidi.c
9 breaking.c
10 indic.c
11 indicsyllable.c
12 linebreak.c
13 usp10.c
14 mirror.c
15 shape.c
16 shaping.c
17 ${CMAKE_CURRENT_BINARY_DIR}/usp10_stubs.c
18 ${CMAKE_CURRENT_BINARY_DIR}/usp10.def)
19
20 add_library(usp10 SHARED ${SOURCE})
21
22 set_module_type(usp10 win32dll)
23
24 target_link_libraries(usp10 wine)
25
26 add_importlibs(usp10 advapi32 user32 gdi32 msvcrt kernel32 ntdll)
27 add_importlib_target(usp10.spec)
28
29 add_cd_file(TARGET usp10 DESTINATION reactos/system32 FOR all)