reactos/dll/win32/msafd/CMakeLists.txt
Amine Khaldi 609ba8d717 * Sync up to trunk head (r64829).
svn path=/branches/shell-experiments/; revision=64830
2014-10-19 18:45:40 +00:00

25 lines
530 B
CMake

include_directories(
BEFORE include
${REACTOS_SOURCE_DIR}/include/reactos/drivers)
spec2def(msafd.dll msafd.spec)
list(APPEND SOURCE
misc/dllmain.c
misc/event.c
misc/helpers.c
misc/sndrcv.c
misc/stubs.c
msafd.h)
add_library(msafd SHARED
${SOURCE}
msafd.rc
${CMAKE_CURRENT_BINARY_DIR}/msafd.def)
set_module_type(msafd win32dll UNICODE)
add_importlibs(msafd advapi32 msvcrt kernel32 ntdll)
add_pch(msafd msafd.h SOURCE)
add_cd_file(TARGET msafd DESTINATION reactos/system32 FOR all)