Closed Adda0 closed 1 year ago
All modified lines are covered by tests :white_check_mark:
Comparison is base (
b7bc4a0
) 71.68% compared to head (6782265
) 71.68%. Report is 1 commits behind head on devel.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
I addressed the suggestions. I will merge the PR once the tests pass.
This PR simplifies Makefile with modern CMake command line options.
mkdir -p $(BUILD_DIR)
does not need to be called sincecmake -B $(BUILD_DIR)
creates the directory by itself if the directory is missing.Target
release-debuginfo
is added which is a release build with debug information, useful for profiling, debugging, etc.