mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
21 lines
641 B
CMake
21 lines
641 B
CMake
|
|
add_definitions(-D__WINESRC__)
|
|
include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
|
|
spec2def(mciseq.dll mciseq.spec)
|
|
|
|
list(APPEND SOURCE
|
|
mcimidi.c
|
|
${CMAKE_CURRENT_BINARY_DIR}/mciseq.def)
|
|
|
|
add_library(mciseq MODULE ${SOURCE})
|
|
set_module_type(mciseq win32dll)
|
|
target_link_libraries(mciseq wine)
|
|
add_importlibs(mciseq winmm user32 msvcrt kernel32 ntdll)
|
|
add_cd_file(TARGET mciseq DESTINATION reactos/system32 FOR all)
|
|
|
|
if(MSVC)
|
|
# Disable warning C4305: '=': truncation from 'UINT' to 'WORD'
|
|
target_compile_options(mciseq PRIVATE /wd4305)
|
|
else()
|
|
target_compile_options(mciseq PRIVATE "-Wno-overflow")
|
|
endif()
|