Add the needed changes to get coveralls to run on my code
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 11dc539..2eb9aa7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -22,6 +22,7 @@
 option (optimize        "Optimize for size" OFF)
 option (fatal_warnings  "Treat build warnings as error" OFF)
 option (coveralls       "Generate coveralls data" ON)
+option ( coveralls_send "Send data to coveralls site" OFF )
 option (build_docs      "Create docs using Doxygen" ${DOXYGEN_FOUND} )
 
 set ( dist_dir          ${CMAKE_BINARY_DIR}/dist )
@@ -35,6 +36,7 @@
    if (optimize)
       set ( CMAKE_BUILD_TYPE MinSizeRel )
       set ( coveralls OFF )
+      set ( coveralls_send OFF )
    else ()
       set ( CMAKE_BUILD_TYPE Debug)
    endif ()