[CMAKE]
[reactos.git] / dll / win32 / msrle32 / CMakeLists.txt
1
2 add_definitions(
3 -D__WINESRC__
4 -D_DLL -D__USE_CRTIMP)
5
6 include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
7
8 spec2def(msrle32.dll msrle32.spec)
9
10 list(APPEND SOURCE
11 msrle32.c
12 rsrc.rc
13 ${CMAKE_CURRENT_BINARY_DIR}/msrle32.def)
14
15 add_library(msrle32 SHARED ${SOURCE})
16
17 set_module_type(msrle32 win32dll)
18 target_link_libraries(msrle32 wine)
19 add_importlibs(msrle32 msvcrt winmm user32 kernel32 ntdll)
20 add_cab_target(msrle32 1)