c3b45fc46a001886159df19e63a97810af81eb3a
[reactos.git] / dll / win32 / lz32 / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
4 spec2def(lz32.dll lz32.spec ADD_IMPORTLIB)
5
6 list(APPEND SOURCE
7 version.rc
8 ${CMAKE_CURRENT_BINARY_DIR}/lz32.def)
9
10 add_library(lz32 SHARED ${SOURCE})
11 set_module_type(lz32 win32dll ENTRYPOINT 0 )
12 target_link_libraries(lz32 wine)
13 add_importlibs(lz32 kernel32 ntdll)
14 add_dependencies(lz32 psdk)
15 add_cd_file(TARGET lz32 DESTINATION reactos/system32 FOR all)