diff CMakeLists.txt @ 27:95a10553ff90

Optimize BitDecoder, and refactor functions that are not timecritical out of header.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Thu, 06 Sep 2012 18:20:11 +0200
parents 9ce5b5855fe3
children b2c2c2bf2bbd
line wrap: on
line diff
--- a/CMakeLists.txt	Thu Sep 06 18:18:49 2012 +0200
+++ b/CMakeLists.txt	Thu Sep 06 18:20:11 2012 +0200
@@ -24,6 +24,7 @@
 
 
 SET(CLASS_SOURCES
+	BitDecoder.cpp
 	DataController.cpp
 	HuffmanString.cpp
 	HuffmanSet.cpp
@@ -69,7 +70,7 @@
 
 
 
-SET(CMAKE_CXX_FLAGS "-g2 -pg -Wall -fno-inline")
+SET(CMAKE_CXX_FLAGS "-O3 -Wall")
 ADD_EXECUTABLE(DeDupe DeDupe.cpp ${SOURCES} ${MOC_SOURCES})
 TARGET_LINK_LIBRARIES(DeDupe ${QT_LIBRARIES} ${SQLITE3_LIBRARIES} ${Boost_LIBRARIES})