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

A few updates #2063

Merged
merged 9 commits into from
Apr 10, 2024
3 changes: 3 additions & 0 deletions sdrbench/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ set(sdrbench_SOURCES
test_ft8.cpp
test_callsign.cpp
test_ft8protocols.cpp
../ft8/pack0.cpp
Copy link
Owner

@f4exb f4exb Apr 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not be added here. It is part of the FT8 library see set(sdrbench_FT8_LIB ft8) above...

Edit: I am wondering why you had an issue with Windows here since the CI/CD with the initial changes went fine: https://github.com/f4exb/sdrangel/actions/runs/8594560974

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have removed it, as doesn't seem to be needed now. I added it when you made the first FT8 related commit - maybe something has changed since then or was just a dodgy build that made it look like it was needed when it wasn't.

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes indeed there was a failing build that I corrected in a later commit.

)

set(sdrbench_HEADERS
Expand All @@ -24,13 +25,15 @@ add_library(sdrbench SHARED

include_directories(
${FFTW3F_INCLUDE_DIRS}
${Boost_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/exports
${CMAKE_SOURCE_DIR}/sdrbase
${CMAKE_SOURCE_DIR}/logging
${CMAKE_SOURCE_DIR}
)

target_link_libraries(sdrbench
Boost::disable_autolinking
${FFTW3F_LIBRARIES}
Qt::Core
Qt::Gui
Expand Down