aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2016-03-31 02:47:30 +0300
committerDaniil Cherednik <dan.cherednik@gmail.com>2016-04-05 02:43:19 +0300
commit0f11bd3264dbdeff1ceb537341a7ac80398ac113 (patch)
treec49b18bc9145ad27f5b2dbe66a7a357f43000d71
parent1db99f4e5ac076a41a23b1e0f424f5f24f4c3df6 (diff)
downloadatracdenc-0f11bd3264dbdeff1ceb537341a7ac80398ac113.tar.gz
bitstream ut added to CMake build
-rw-r--r--test/CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index 2e33685..d76cbea 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -6,3 +6,10 @@ set(mdct_test_sources
set(MDCT_SOURCE_LIB ../src/mdct/vorbis_impl/mdct.c)
add_executable(mdct_test ${mdct_test_sources})
target_link_libraries(mdct_test mdct_impl gtest_main)
+
+set(bitstream_test_sources
+ ../src/bitstream/bitstream.cpp
+ ../src/bitstream/bitstream_ut.cpp
+)
+add_executable(bitstream_test ${bitstream_test_sources})
+target_link_libraries(bitstream_test gtest_main)