mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
16 lines
389 B
CMake
16 lines
389 B
CMake
|
|
spec2def(midimap.dll midimap.spec)
|
|
|
|
add_library(midimap SHARED
|
|
midimap.c
|
|
midimap.rc
|
|
${CMAKE_CURRENT_BINARY_DIR}/midimap.def)
|
|
|
|
set_module_type(midimap win32dll UNICODE)
|
|
|
|
target_link_libraries(midimap uuid wine)
|
|
|
|
add_importlibs(midimap advapi32 user32 winmm msvcrt kernel32 ntdll)
|
|
add_dependencies(midimap psdk)
|
|
add_cd_file(TARGET midimap DESTINATION reactos/system32 FOR all)
|
|
|