Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CMakeLists.txt: Always undefine NDEBUG when building LAIK.
When using CMake, the recommend way to get an optimized build is to do a release build via ```-D CMAKE_BUILD_TYPE=Release```. This adds ```-O3``` but also ```-DNDEBUG```, which unfortunately currently breaks LAIK (see issue #92). Therefore, we now always undefine ```NDEBUG``` in the main ```CMakeLists.txt``` file until LAIK is fixed to work with ```NDEBUG```.
- Loading branch information