blob: 1991ad30f583518afb9dce5683a9b7e8db7e8acc [file] [log] [blame]
iree_cc_library(
NAME
util
HDRS
"util.h"
SRCS
"util.c"
DEPS
"m"
)
iree_cc_library(
NAME
mfcc
HDRS
"mfcc.h"
SRCS
"mfcc.c"
DEPS
::util
)
iree_cc_binary(
NAME
mfcc_test
SRCS
"mfcc_test.cc"
DEPS
::mfcc
pw_unit_test
pw_unit_test.main
pw_assert_basic
)