[CMAKE]
[reactos.git] / dll / win32 / uxtheme / CMakeLists.txt
1
2 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
3 add_definitions(-D__WINESRC__)
4
5 spec2def(uxtheme.dll uxtheme.spec)
6
7 add_library(uxtheme SHARED
8 buffer.c
9 draw.c
10 main.c
11 metric.c
12 msstyles.c
13 property.c
14 stylemap.c
15 system.c
16 uxini.c
17 version.rc
18 ${CMAKE_CURRENT_BINARY_DIR}/uxtheme.def)
19
20 set_module_type(uxtheme win32dll)
21
22 target_link_libraries(uxtheme wine)
23
24 add_importlibs(uxtheme user32 advapi32 gdi32 msimg32 kernel32 ntdll)
25
26 add_cab_target(uxtheme 1)