Skip to content

Commit

Permalink
Ubuntu isn't liking linking to the .so file for some reason, partiall…
Browse files Browse the repository at this point in the history
…y reverting last commit.
  • Loading branch information
tmiw committed Oct 2, 2024
1 parent 00f4e3f commit d118bbb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ set_target_properties(rade PROPERTIES
PUBLIC_HEADER "rade_api.h"
)

add_executable(radae_tx radae_tx.c)
target_link_libraries(radae_tx rade Python3::Python Python3::NumPy)
add_executable(radae_tx radae_tx.c rade_api.c)
target_link_libraries(radae_tx Python3::Python Python3::NumPy)

add_executable(radae_rx radae_rx.c)
target_link_libraries(radae_rx rade Python3::Python Python3::NumPy)
add_executable(radae_rx radae_rx.c rade_api.c)
target_link_libraries(radae_rx Python3::Python Python3::NumPy)

0 comments on commit d118bbb

Please sign in to comment.