Skip to content

Commit 3c0631c

Browse files
committed
bitstream ut added to CMake build
1 parent a6c420b commit 3c0631c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/CMakeLists.txt

+7
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,10 @@ set(mdct_test_sources
66
set(MDCT_SOURCE_LIB ../src/mdct/vorbis_impl/mdct.c)
77
add_executable(mdct_test ${mdct_test_sources})
88
target_link_libraries(mdct_test mdct_impl gtest_main)
9+
10+
set(bitstream_test_sources
11+
../src/bitstream/bitstream.cpp
12+
../src/bitstream/bitstream_ut.cpp
13+
)
14+
add_executable(bitstream_test ${bitstream_test_sources})
15+
target_link_libraries(bitstream_test gtest_main)

0 commit comments

Comments
 (0)