diff options
Diffstat (limited to 'gnuradio-runtime/lib/CMakeLists.txt')
-rw-r--r-- | gnuradio-runtime/lib/CMakeLists.txt | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gnuradio-runtime/lib/CMakeLists.txt b/gnuradio-runtime/lib/CMakeLists.txt index 6ed9d33278..429a5a2825 100644 --- a/gnuradio-runtime/lib/CMakeLists.txt +++ b/gnuradio-runtime/lib/CMakeLists.txt @@ -53,12 +53,18 @@ list(APPEND gnuradio_runtime_sources ${CMAKE_CURRENT_BINARY_DIR}/gr_constants.cc include_directories(${GNURADIO_RUNTIME_INCLUDE_DIRS} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}/../include/ - ${GRUEL_INCLUDE_DIRS} ${VOLK_INCLUDE_DIRS} ${Boost_INCLUDE_DIRS} ) ######################################################################## +# Include subdirs rather to populate to the sources lists. +######################################################################## +GR_INCLUDE_SUBDIRECTORY(messages) +GR_INCLUDE_SUBDIRECTORY(pmt) +GR_INCLUDE_SUBDIRECTORY(thread) + +######################################################################## # Setup library ######################################################################## list(APPEND gnuradio_runtime_sources @@ -129,7 +135,6 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)") endif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)") list(APPEND gnuradio_runtime_libs - gruel volk ${Boost_LIBRARIES} ${LOG4CPP_LIBRARIES} @@ -209,7 +214,6 @@ endif(TRY_SHM_VMCIRCBUF) add_library(gnuradio-runtime SHARED ${gnuradio_runtime_sources}) target_link_libraries(gnuradio-runtime ${gnuradio_runtime_libs}) GR_LIBRARY_FOO(gnuradio-runtime RUNTIME_COMPONENT "runtime" DEVEL_COMPONENT "runtime_devel") -set_target_properties(gnuradio-runtime PROPERTIES LINK_INTERFACE_LIBRARIES "gruel") add_dependencies(gnuradio-runtime runtime_generated_includes @@ -236,6 +240,8 @@ list(APPEND test_gnuradio_runtime_sources qa_gr_vmcircbuf.cc qa_runtime.cc qa_sincos.cc + pmt/qa_pmt.cc + pmt/qa_pmt_prims.cc ) include_directories(${CPPUNIT_INCLUDE_DIRS}) |