2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
include_directories(
|
2016-04-20 12:36:25 +00:00
|
|
|
${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
spec2def(msafd.dll msafd.spec)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
misc/dllmain.c
|
|
|
|
misc/event.c
|
|
|
|
misc/helpers.c
|
|
|
|
misc/sndrcv.c
|
|
|
|
misc/stubs.c
|
2014-02-10 12:19:56 +00:00
|
|
|
msafd.h)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2019-03-20 13:19:48 +00:00
|
|
|
add_library(msafd MODULE
|
2014-02-10 12:19:56 +00:00
|
|
|
${SOURCE}
|
|
|
|
msafd.rc
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/msafd.def)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2011-09-03 19:11:44 +00:00
|
|
|
set_module_type(msafd win32dll UNICODE)
|
2014-11-10 13:06:48 +00:00
|
|
|
target_link_libraries(msafd wine)
|
2016-09-20 08:12:44 +00:00
|
|
|
add_importlibs(msafd advapi32 ws2_32 msvcrt kernel32 ntdll)
|
2014-02-10 12:19:56 +00:00
|
|
|
add_pch(msafd msafd.h SOURCE)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET msafd DESTINATION reactos/system32 FOR all)
|