diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-05 07:26:00 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-05 07:26:00 -0500 |
commit | b4e87c06e00a5ab40bf6fa343af724d76f49d00d (patch) | |
tree | a1c05384892897c1e18d7485734c782dc370b10d /gnuradio-core/src/lib | |
parent | d502e39c90c16b461be133366068d699f034e31c (diff) |
log: simplifying makefile since this variable is always set, even if blank.
Diffstat (limited to 'gnuradio-core/src/lib')
-rw-r--r-- | gnuradio-core/src/lib/CMakeLists.txt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnuradio-core/src/lib/CMakeLists.txt b/gnuradio-core/src/lib/CMakeLists.txt index 08ee195ee2..5b63b9a7b3 100644 --- a/gnuradio-core/src/lib/CMakeLists.txt +++ b/gnuradio-core/src/lib/CMakeLists.txt @@ -113,10 +113,6 @@ include_directories(${CPPUNIT_INCLUDE_DIRS}) link_directories(${CPPUNIT_LIBRARY_DIRS}) add_library(test-gnuradio-core SHARED ${test_gnuradio_core_sources}) -target_link_libraries(test-gnuradio-core gnuradio-core ${CPPUNIT_LIBRARIES} ${Boost_LIBRARIES}) - -if(LOG4CXX_FOUND) - target_link_libraries(test-gnuradio-core gnuradio-core ${LOG4CXX_LIBRARIES}) -endif(LOG4CXX_FOUND) +target_link_libraries(test-gnuradio-core gnuradio-core ${CPPUNIT_LIBRARIES} ${Boost_LIBRARIES} ${LOG4CXX_LIBRARIES}) endif(ENABLE_TESTING) |