- Synchronize up to trunk's revision r57864.
[reactos.git] / dll / win32 / msafd / CMakeLists.txt
1
2
3 include_directories(
4 BEFORE include
5 ${REACTOS_SOURCE_DIR}/include/reactos/drivers)
6
7 spec2def(msafd.dll msafd.spec)
8
9 list(APPEND SOURCE
10 msafd.rc
11 misc/dllmain.c
12 misc/event.c
13 misc/helpers.c
14 misc/sndrcv.c
15 misc/stubs.c
16 ${CMAKE_CURRENT_BINARY_DIR}/msafd.def)
17
18 add_library(msafd SHARED ${SOURCE})
19
20 set_module_type(msafd win32dll UNICODE)
21
22 add_importlibs(msafd advapi32 msvcrt kernel32 ntdll)
23 add_pch(msafd msafd.h)
24 add_cd_file(TARGET msafd DESTINATION reactos/system32 FOR all)