2011-05-16 13:12:07 +00:00
|
|
|
|
2016-04-20 12:36:25 +00:00
|
|
|
include_directories(${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(uxtheme.dll uxtheme.spec ADD_IMPORTLIB)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
buffer.c
|
|
|
|
draw.c
|
|
|
|
main.c
|
|
|
|
metric.c
|
|
|
|
msstyles.c
|
2011-07-11 22:29:33 +00:00
|
|
|
ncscrollbar.c
|
2011-05-14 18:31:47 +00:00
|
|
|
nonclient.c
|
2011-05-16 13:12:07 +00:00
|
|
|
property.c
|
|
|
|
stylemap.c
|
|
|
|
system.c
|
2011-05-14 18:31:47 +00:00
|
|
|
themehooks.c
|
2011-05-16 13:12:07 +00:00
|
|
|
uxini.c
|
2014-02-10 12:19:56 +00:00
|
|
|
uxthemep.h
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/uxtheme_stubs.c)
|
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(uxtheme MODULE
|
2014-02-10 12:19:56 +00:00
|
|
|
${SOURCE}
|
2011-05-16 13:12:07 +00:00
|
|
|
version.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/uxtheme.def)
|
|
|
|
|
|
|
|
set_module_type(uxtheme win32dll)
|
|
|
|
target_link_libraries(uxtheme wine)
|
2011-09-04 00:52:28 +00:00
|
|
|
add_delay_importlibs(uxtheme msimg32)
|
|
|
|
add_importlibs(uxtheme user32 advapi32 gdi32 msvcrt kernel32 ntdll)
|
2014-02-10 12:19:56 +00:00
|
|
|
add_pch(uxtheme uxthemep.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET uxtheme DESTINATION reactos/system32 FOR all)
|