[CMAKE]
[reactos.git] / drivers / wdm / audio / legacy / wdmaud / CMakeLists.txt
1
2 add_definitions(-D_COMDDK_)
3
4 include_directories(
5 ${REACTOS_SOURCE_DIR}/lib/drivers/sound/mmixer
6 ${REACTOS_SOURCE_DIR}/include/reactos/libs/sound)
7
8 add_library(wdmaud SHARED
9 control.c
10 deviface.c
11 entry.c
12 mmixer.c
13 sup.c
14 wdmaud.rc)
15
16 set_module_type(wdmaud kernelmodedriver)
17
18 target_link_libraries(wdmaud
19 mmixer
20 libcntpr
21 ${PSEH_LIB})
22
23 add_importlibs(wdmaud ntoskrnl ks hal)
24
25
26 add_cd_file(TARGET wdmaud DESTINATION reactos/system32/drivers FOR all)