reactos/drivers/wdm/audio/legacy/wdmaud/CMakeLists.txt
Amine Khaldi 08bb8bef3d [CMAKE]
- Improve the rest of the drivers.

svn path=/branches/cmake-bringup/; revision=49470
2010-11-04 21:31:33 +00:00

24 lines
415 B
CMake

add_definitions(-D_COMDDK_)
include_directories(
${REACTOS_SOURCE_DIR}/lib/drivers/sound/mmixer
${REACTOS_SOURCE_DIR}/include/reactos/libs/sound)
add_library(wdmaud SHARED
control.c
deviface.c
entry.c
mmixer.c
sup.c
wdmaud.rc)
set_module_type(wdmaud kernelmodedriver)
target_link_libraries(wdmaud
mmixer
libcntpr
${PSEH_LIB})
add_importlibs(wdmaud ntoskrnl ks hal)