1
2add_definitions(
3    -DUNICODE -D_UNICODE
4    -DDEBUG_NT4=1)
5
6include_directories(${REACTOS_SOURCE_DIR}/sdk/include/reactos/libs/sound)
7
8list(APPEND SOURCE
9    detect.c
10    registry.c
11    control.c
12    precomp.h)
13
14add_library(mment4 ${SOURCE})
15add_pch(mment4 precomp.h SOURCE)
16add_dependencies(mment4 psdk)
17