# HG changeset patch # User Tom Fredrik Blenning Klaussen # Date 1347016495 -7200 # Node ID f23fa42238dcd2a2cde383771c90e5a9430e0df8 # Parent 7905fa8a3f1b4c5cf04b4639bc21d33820b2cf04 Order inputs in CMakeLists. diff -r 7905fa8a3f1b -r f23fa42238dc CMakeLists.txt --- a/CMakeLists.txt Fri Sep 07 13:07:46 2012 +0200 +++ b/CMakeLists.txt Fri Sep 07 13:14:55 2012 +0200 @@ -33,29 +33,29 @@ SET(CLASS_SOURCES BitDecoder.cpp + ConfigurationProcessing.cpp DataController.cpp - HuffmanString.cpp - HuffmanSet.cpp EditDistance.cpp Exception/IOException.cpp Exception/SQLException.cpp FileDBLink.cpp - SqliteDBLink.cpp + HuffmanSet.cpp + HuffmanString.cpp MemoryDBLink.cpp - ConfigurationProcessing.cpp + SqliteDBLink.cpp UniqueString.cpp ) SET(CLASS_HEADERS + ConfigurationProcessing.hpp DataController.hpp EditDistance.hpp Exception/IOException.hpp FileDBLink.hpp + MemoryDBLink.hpp + RBTree.hpp SqliteDBLink.hpp - MemoryDBLink.hpp - ConfigurationProcessing.hpp UniqueString.hpp - RBTree.hpp ) SET(MOC_HEADERS @@ -66,8 +66,8 @@ QT4_WRAP_CPP(MOC_SOURCES ${MOC_HEADERS}) SET(SOURCES + ${CLASS_HEADERS} ${CLASS_SOURCES} - ${CLASS_HEADERS} ${MOC_SOURCES} ) @@ -88,11 +88,11 @@ TARGET_LINK_LIBRARIES(updateDeDupe ${QT_LIBRARIES} ${SQLITE3_LIBRARIES} ${Boost_LIBRARIES}) ENABLE_TESTING() +NEW_TEST(TestBitDecoder) +NEW_TEST(TestDBCache) NEW_TEST(TestEditDistance) -NEW_TEST(TestDBCache) +NEW_TEST(TestHuffmanString) +NEW_TEST(TestRBTree) NEW_TEST(TestSqliteDBLink) -NEW_TEST(TestRBTree) -NEW_TEST(TestHuffmanString) -NEW_TEST(TestBitDecoder) #ADD_PRECOMPILED_HEADER(TestEditDistance TestFramework.hpp)