diff CMakeLists.txt @ 78:9744ec195be3

Encapsulate EditDistance with caching.
author Tom Fredrik Blenning Klaussen <bfg@bfgconsult.no>
date Thu, 10 Oct 2013 01:07:52 +0200
parents a827f3687c4a
children 114be42a612c
line wrap: on
line diff
--- a/CMakeLists.txt	Sat Feb 16 19:00:54 2013 +0100
+++ b/CMakeLists.txt	Thu Oct 10 01:07:52 2013 +0200
@@ -69,6 +69,7 @@
 SET(CLASS_SOURCES
 	BitArray.cpp
 	BitDecoder.cpp
+	CachedEditDistance.cpp
 	ConfigurationProcessing.cpp
 	DataController.cpp
 	EditDistance.cpp
@@ -89,6 +90,7 @@
 SET(CLASS_HEADERS
 	BitArray.hpp
 	BitDecoder.hpp
+	CachedEditDistance.hpp
 	ConfigurationProcessing.hpp
 	DataController.hpp
 	EditDistance.hpp
@@ -220,7 +222,7 @@
 					  coverage_test.info 'moc_*'
 					  --output-file coverage.preprocessed2
 					  DEPENDS coverage_test.info
-					  COMMENT "Removing \"moc_\"-files" 
+					  COMMENT "Removing \"moc_\"-files"
 )
 
 
@@ -237,7 +239,7 @@
 ADD_CUSTOM_TARGET(coverage_presentation genhtml -q
 				    ${CMAKE_CURRENT_BINARY_DIR}/coverage.preprocessed
 				    --output-directory
-				    ${CMAKE_CURRENT_BINARY_DIR}/coverage_presentation 
+				    ${CMAKE_CURRENT_BINARY_DIR}/coverage_presentation
 				    DEPENDS
 				    ${CMAKE_CURRENT_BINARY_DIR}/coverage.preprocessed
 )