diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-06-08 12:15:42 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-06-08 12:15:42 -0400 |
commit | d71d02d7eb01b56b842d6a71a2b7d087c5513e7b (patch) | |
tree | 27dd93e12a85fac6dc7bd2bfb3d22b94d073918c /gr-wavelet/lib | |
parent | a14010ec147e3c86f93245d34be58548493aaed1 (diff) |
Fixing up the gr-log capabilities.
Better handling of enable/disable function, easier integration with all components if log4cxx is or is not there. All components have been updated to be able to use logging. Docs update, too.
Diffstat (limited to 'gr-wavelet/lib')
-rw-r--r-- | gr-wavelet/lib/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gr-wavelet/lib/CMakeLists.txt b/gr-wavelet/lib/CMakeLists.txt index f0d9068b75..16a0bdc876 100644 --- a/gr-wavelet/lib/CMakeLists.txt +++ b/gr-wavelet/lib/CMakeLists.txt @@ -36,6 +36,9 @@ link_directories(${Boost_LIBRARY_DIRS}) include_directories(${GSL_INCLUDE_DIRS}) link_directories(${GSL_LIBRARY_DIRS}) +include_directories(${LOG4CXX_INCLUDE_DIRS}) +link_directories(${LOG4CXX_LIBRARY_DIRS}) + ######################################################################## # Setup library ######################################################################## @@ -50,6 +53,7 @@ list(APPEND wavelet_libs ${Boost_LIBRARIES} ${WAVELET_LIBRARIES} ${GSL_LIBRARIES} + ${LOG4CXX_LIBRARIES} ) add_library(gnuradio-wavelet SHARED ${gr_wavelet_sources}) |