diff options
Diffstat (limited to 'host/tests/CMakeLists.txt')
-rw-r--r-- | host/tests/CMakeLists.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/host/tests/CMakeLists.txt b/host/tests/CMakeLists.txt index f31daed50..c308abdcb 100644 --- a/host/tests/CMakeLists.txt +++ b/host/tests/CMakeLists.txt @@ -246,6 +246,19 @@ UHD_INSTALL(TARGETS COMPONENT tests ) +add_executable(actions_test + actions_test.cpp + ${CMAKE_SOURCE_DIR}/lib/rfnoc/graph.cpp +) +target_link_libraries(actions_test uhd ${Boost_LIBRARIES}) +UHD_ADD_TEST(actions_test actions_test) +UHD_INSTALL(TARGETS + actions_test + RUNTIME + DESTINATION ${PKG_LIB_DIR}/tests + COMPONENT tests +) + ######################################################################## # demo of a loadable module ######################################################################## |