-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Allow sub-graphs to be added to gr::Graph - Allow exporting ports from graphs - Allow reading and writing sub-graphs into GRC Signed-off-by: Ivan Čukić <[email protected]>
- Loading branch information
1 parent
2e79797
commit c002328
Showing
13 changed files
with
768 additions
and
455 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
add_executable(soapy_example soapy_example.cpp) | ||
target_link_libraries(soapy_example PRIVATE gr-basic gr-fileio gr-testing gr-soapy ut) | ||
target_link_libraries( | ||
soapy_example | ||
PRIVATE gr-basic | ||
gr-fileio | ||
gr-testing | ||
gr-soapy | ||
ut) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
add_executable(qa_Soapy qa_Soapy.cpp) | ||
target_include_directories(qa_Soapy PRIVATE ${CMAKE_BINARY_DIR}/include ${CMAKE_CURRENT_BINARY_DIR}) | ||
target_link_libraries(qa_Soapy PRIVATE gnuradio-options gnuradio-core fmt fftw gr-soapy gr-testing ut) | ||
target_link_libraries( | ||
qa_Soapy | ||
PRIVATE gnuradio-options | ||
gnuradio-core | ||
fmt | ||
fftw | ||
gr-soapy | ||
gr-testing | ||
ut) | ||
add_test(NAME qa_Soapy COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} ${CMAKE_CURRENT_BINARY_DIR}/qa_Soapy) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.