mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00

- Move more dlls with no stubs into using def files instead of spec files. svn path=/branches/cmake-bringup/; revision=49449
20 lines
445 B
CMake
20 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)
|