Mercurial > dedupe
diff CMakeLists.txt @ 46:877327e9061a
N-Tree for decoding.
| author | Tom Fredrik Blenning Klaussen <bfg@blenning.no> |
|---|---|
| date | Mon, 10 Sep 2012 21:31:10 +0200 |
| parents | f23fa42238dc |
| children | ef429402e03b |
line wrap: on
line diff
--- a/CMakeLists.txt Mon Sep 10 21:29:43 2012 +0200 +++ b/CMakeLists.txt Mon Sep 10 21:31:10 2012 +0200 @@ -38,6 +38,7 @@ EditDistance.cpp Exception/IOException.cpp Exception/SQLException.cpp + FastBitDecoder.cpp FileDBLink.cpp HuffmanSet.cpp HuffmanString.cpp @@ -80,6 +81,7 @@ SET(CMAKE_CXX_FLAGS "-O3 -Wall") +#SET(CMAKE_CXX_FLAGS "-g2 -Wall -fno-inline") ADD_EXECUTABLE(DeDupe Apps/DeDupe.cpp ${SOURCES} ${MOC_SOURCES}) TARGET_LINK_LIBRARIES(DeDupe ${QT_LIBRARIES} ${SQLITE3_LIBRARIES} ${Boost_LIBRARIES}) @@ -91,6 +93,7 @@ NEW_TEST(TestBitDecoder) NEW_TEST(TestDBCache) NEW_TEST(TestEditDistance) +NEW_TEST(TestFastBitDecoder) NEW_TEST(TestHuffmanString) NEW_TEST(TestRBTree) NEW_TEST(TestSqliteDBLink)
