[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / dll / win32 / msafd / CMakeLists.txt
1
2 include_directories(
3 ${REACTOS_SOURCE_DIR}/sdk/include/reactos/drivers)
4
5 spec2def(msafd.dll msafd.spec)
6
7 list(APPEND SOURCE
8 misc/dllmain.c
9 misc/event.c
10 misc/helpers.c
11 misc/sndrcv.c
12 misc/stubs.c
13 msafd.h)
14
15 add_library(msafd SHARED
16 ${SOURCE}
17 msafd.rc
18 ${CMAKE_CURRENT_BINARY_DIR}/msafd.def)
19
20 set_module_type(msafd win32dll UNICODE)
21 target_link_libraries(msafd wine)
22 add_importlibs(msafd advapi32 msvcrt kernel32 ntdll)
23 add_pch(msafd msafd.h SOURCE)
24 add_cd_file(TARGET msafd DESTINATION reactos/system32 FOR all)