[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 set_rc_compiler()
9
10 spec2def(msrle32.dll msrle32.spec)
11
12 list(APPEND SOURCE
13 msrle32.c
14 rsrc.rc
15 ${CMAKE_CURRENT_BINARY_DIR}/msrle32.def)
16
17 add_library(msrle32 SHARED ${SOURCE})
18
19 set_module_type(msrle32 win32dll)
20 target_link_libraries(msrle32 wine)
21 add_importlibs(msrle32 msvcrt winmm user32 kernel32 ntdll)
22 add_cab_target(msrle32 1)