[LT2013]
[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 ADD_IMPORTLIB)
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 opentype.c
16 shape.c
17 shaping.c
18 ${CMAKE_CURRENT_BINARY_DIR}/usp10_stubs.c
19 ${CMAKE_CURRENT_BINARY_DIR}/usp10.def)
20
21 add_library(usp10 SHARED ${SOURCE})
22
23 set_module_type(usp10 win32dll)
24
25 target_link_libraries(usp10 wine)
26
27 add_importlibs(usp10 advapi32 user32 gdi32 msvcrt kernel32 ntdll)
28
29
30 add_cd_file(TARGET usp10 DESTINATION reactos/system32 FOR all)