binarydeb with CGAL
I have a problem building a package using the CGAL libray on the buildfram.
The prerelease test is sucessful on both my local computer and Jenkins but I get the following error when trying to build the binary deb:
CMake Error at> /usr/lib/CGAL/CGAL_SetupFlags.cmake:65
(message): RelWithDebInfo is not a valid build type: only Release or Debug is allowed
The inclusion of CGAL in my CMakeLists.txt looks like this:
find_package(CGAL REQUIRED COMPONENTS Core)
set(CGAL_DONT_OVERRIDE_CMAKE_FLAGS TRUE CACHE BOOL "Don't override flags")
include(${CGAL_USE_FILE})
The package name is crossing_detector. Its source is in https://github.com/lama-imr/lama_util... .
How can I deal with this problem?