Description: CMakeLists was overiding cxxflags
    This fixes the lintian warning "debug-file-with-no-debug-symbols"
    that was generated because no flags were passed to the compiler (e.g. -g).
    They were all removed and replaced by just "-std=c++11".
Forwarded: yes
Author: Emmanuel Promayon <Emmanuel.Promayon@imag.fr>
Last-Update: 2016-10-04
--- camitk-4.0.3.orig/CMakeLists.txt
+++ camitk-4.0.3/CMakeLists.txt
@@ -34,7 +34,7 @@ include(camitk/packaging/CamiTKOpenSourc
 camitk_opensource_packaging()
 
 # CamiTK 4.0 is C++11 compliant
-set(CMAKE_CXX_FLAGS "-std=c++11")
+set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
 
 # Specific to SDK: first compile the SDK (it looks like a CEP but is sooooo special...)
 add_subdirectory(sdk)
