reactos/dll/win32/msrle32/CMakeLists.txt
Amine Khaldi 79b73c825d [CMAKE]
- Move more dlls with no stubs into using def files instead of spec files.

svn path=/branches/cmake-bringup/; revision=49449
2010-11-02 19:58:29 +00:00

21 lines
445 B
CMake

add_definitions(
-D__WINESRC__
-D_DLL -D__USE_CRTIMP)
include_directories(${REACTOS_SOURCE_DIR}/include/reactos/wine)
add_library(msrle32 SHARED msrle32.c rsrc.rc msrle32.def)
if(NOT MSVC)
set_source_files_properties(msrle32.def PROPERTIES EXTERNAL_OBJECT TRUE)
endif()
set_module_type(msrle32 win32dll)
target_link_libraries(msrle32 wine)
add_importlibs(msrle32 msvcrt winmm user32 kernel32 ntdll)
add_cab_target(msrle32 1)