CMake: add debug options to windows builds #834
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
gcc and clang always build with '-g', enabling easier debugging, so
catch MSVC to the same.
This will create seperate program database (.pdb) files, which map
identifiers and statements in the project's source code to
corresponding identifiers and instructions in compiled apps.
These mapping files link the debugger to your source code, which
enables debugging.
Hopefully this will put a stop to those who want to build in windows
in debug mode (which is not possible, see #772)
This does not include the pdb files in the installers, so the only way
to get them is build locally.
Signed-off-by: Robin Getz robin.getz@analog.com