mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
7e069ccdb2
add_target_compile_definitions -> target_compile_definitions add_target_compile_flags -> target_compile_options add_target_include_directories -> target_include_directories
19 lines
520 B
CMake
19 lines
520 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(NOT MSVC)
|
|
target_compile_options(mciseq PRIVATE "-Wno-overflow")
|
|
endif()
|