Sync to trunk revision 61757.
[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 ${CMAKE_CURRENT_BINARY_DIR}/usp10_stubs.c
18 ${CMAKE_CURRENT_BINARY_DIR}/usp10.def)
19
20 add_library(usp10 SHARED ${SOURCE})
21 set_module_type(usp10 win32dll)
22 target_link_libraries(usp10 wine)
23 add_importlibs(usp10 advapi32 user32 gdi32 msvcrt kernel32 ntdll)
24 add_cd_file(TARGET usp10 DESTINATION reactos/system32 FOR all)