[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / dll / win32 / msg711.acm / CMakeLists.txt
1
2 add_definitions(-D__WINESRC__)
3 include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/wine)
4 spec2def(msg711.acm msg711.acm.spec)
5
6 list(APPEND SOURCE
7 msg711.c
8 ${CMAKE_CURRENT_BINARY_DIR}/msg711.def)
9
10 add_library(msg711.acm SHARED ${SOURCE})
11 set_module_type(msg711.acm win32dll)
12 set_target_properties(msg711.acm PROPERTIES SUFFIX "")
13 target_link_libraries(msg711.acm wine)
14 add_importlibs(msg711.acm winmm user32 msvcrt kernel32 ntdll)
15 add_cd_file(TARGET msg711.acm DESTINATION reactos/system32 FOR all)