2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
BEFORE include
|
|
|
|
${REACTOS_SOURCE_DIR}/include/reactos/drivers)
|
|
|
|
|
|
|
|
spec2def(msafd.dll msafd.spec)
|
|
|
|
|
|
|
|
list(APPEND SOURCE
|
|
|
|
msafd.rc
|
|
|
|
misc/dllmain.c
|
|
|
|
misc/event.c
|
|
|
|
misc/helpers.c
|
|
|
|
misc/sndrcv.c
|
|
|
|
misc/stubs.c
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/msafd.def)
|
|
|
|
|
2011-06-02 12:18:22 +00:00
|
|
|
add_library(msafd SHARED ${SOURCE})
|
2011-05-16 13:12:07 +00:00
|
|
|
|
2011-09-03 19:11:44 +00:00
|
|
|
set_module_type(msafd win32dll UNICODE)
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
add_importlibs(msafd advapi32 msvcrt kernel32 ntdll)
|
2011-06-19 16:35:43 +00:00
|
|
|
add_pch(msafd msafd.h)
|
2011-05-16 13:12:07 +00:00
|
|
|
add_cd_file(TARGET msafd DESTINATION reactos/system32 FOR all)
|