Advertisement
Guest User

CMakeLists.txt

a guest
Aug 13th, 2017
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 0.64 KB | None | 0 0
  1. # GNU Radio C++ Flow Graph CMakeLists.txt
  2. #
  3. # Title: top_block
  4. # % if flow_graph.get_option('author'):
  5. # Author:
  6. # % endif
  7. # % if flow_graph.get_option('description'):
  8. # Description:
  9. # % endif
  10. # Generated: Sun Aug 13 21:45:51 2017
  11.  
  12.  
  13. include_directories(
  14.     ${GR_ANALOG_INCLUDE_DIRS}
  15.     ${GR_FILTER_INCLUDE_DIRS}
  16.     ${GR_BLOCKS_INCLUDE_DIRS}
  17.     ${GR_FFT_INCLUDE_DIRS}
  18.     ${GNURADIO_RUNTIME_INCLUDE_DIRS}
  19.     ${Boost_INCLUDE_DIRS}
  20. }
  21.  
  22. set(GR_LIBRARIES
  23.     gnuradio-analog
  24.     gnuradio-filter
  25.     gnuradio-blocks
  26.     gnuradio-fft
  27.     gnuradio-runtime
  28. )
  29.  
  30. add_executable(tb tb.cpp)
  31. target_link_libraries(tb ${GR_LIBRARIES})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement