changeset 39:f23fa42238dc

Order inputs in CMakeLists.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Fri, 07 Sep 2012 13:14:55 +0200
parents 7905fa8a3f1b
children f711ddb56ae7
files CMakeLists.txt
diffstat 1 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- 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)