reactos/drivers/wdm/audio/filters/kmixer/CMakeLists.txt
Pierre Schweitzer 321bcc056d Create the AHCI branch for Aman's work
svn path=/branches/GSoC_2016/AHCI/; revision=71203
2016-04-24 20:17:09 +00:00

16 lines
420 B
CMake

include_directories(${REACTOS_SOURCE_DIR}/sdk/lib/3rdparty/libsamplerate)
list(APPEND SOURCE
kmixer.c
filter.c
pin.c
kmixer.h)
add_library(kmixer SHARED ${SOURCE})
set_module_type(kmixer kernelmodedriver)
target_link_libraries(kmixer libcntpr libsamplerate)
add_pch(kmixer kmixer.h SOURCE)
add_importlibs(kmixer ntoskrnl ks hal)
add_cd_file(TARGET kmixer DESTINATION reactos/system32/drivers FOR all)