Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include PDB debugging file for FreeDV. #633

Merged
merged 2 commits into from Dec 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions CMakeLists.txt
Expand Up @@ -617,6 +617,14 @@ install(
DESTINATION share/freedv-gui
)

if(WIN32)
# Install pdb files.
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/src/freedv.pdb
DESTINATION bin
)
endif(WIN32)

if(WIN32)
#
# Cpack NSIS configuration for Windows.
Expand Down
1 change: 1 addition & 0 deletions USER_MANUAL.md
Expand Up @@ -922,6 +922,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
2. Enhancements:
* Allow user to refresh status message even if it hasn't been changed. (PR #632)
* Increase priority of status message highlight. (PR #632)
* Include PDB debugging file for FreeDV. (PR #633)

## V1.9.6 December 2023

Expand Down