2011-05-16 13:12:07 +00:00
|
|
|
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(BEFORE ${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_definitions(-D__WINESRC__)
|
2012-03-07 21:21:27 +00:00
|
|
|
spec2def(usp10.dll usp10.spec ADD_IMPORTLIB)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
bidi.c
|
2014-10-08 18:56:19 +00:00
|
|
|
bracket.c
|
2011-12-07 05:16:30 +00:00
|
|
|
breaking.c
|
|
|
|
indic.c
|
|
|
|
indicsyllable.c
|
|
|
|
linebreak.c
|
2011-05-16 13:12:07 +00:00
|
|
|
mirror.c
|
2012-01-26 15:07:46 +00:00
|
|
|
opentype.c
|
2011-05-16 13:12:07 +00:00
|
|
|
shape.c
|
|
|
|
shaping.c
|
2013-09-28 15:11:02 +00:00
|
|
|
usp10.c
|
2018-03-24 12:07:16 +00:00
|
|
|
precomp.h
|
2014-02-10 12:19:56 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/usp10_stubs.c)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(usp10 MODULE
|
2014-02-10 12:19:56 +00:00
|
|
|
${SOURCE}
|
2011-05-16 13:12:07 +00:00
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/usp10.def)
|
|
|
|
|
|
|
|
set_module_type(usp10 win32dll)
|
|
|
|
target_link_libraries(usp10 wine)
|
2011-12-07 05:16:30 +00:00
|
|
|
add_importlibs(usp10 advapi32 user32 gdi32 msvcrt kernel32 ntdll)
|
2018-03-24 12:07:16 +00:00
|
|
|
add_pch(usp10 precomp.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET usp10 DESTINATION reactos/system32 FOR all)
|