Skip to content

Tools/ApplicationDebugger: update jacobi sample. #1421

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

Merged
merged 1 commit into from
Mar 14, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Tools/ApplicationDebugger/jacobi/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ endif ()
set (PROJECT_NAME_BUGGED "${PROJECT_NAME}-bugged")
set (PROJECT_NAME_FIXED "${PROJECT_NAME}-fixed")

add_executable (${PROJECT_NAME_BUGGED} src/jacobi-bugged.cpp)
add_executable (${PROJECT_NAME_FIXED} src/jacobi-fixed.cpp)
add_executable (${PROJECT_NAME_BUGGED} src/jacobi.cpp)
add_executable (${PROJECT_NAME_FIXED} src/jacobi.cpp)
target_compile_definitions (${PROJECT_NAME_FIXED} PRIVATE FIXED)

# Add custom target for starting a debug session
add_custom_target (debug-session
Expand Down
Loading