summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Braun2013-01-28 11:46:18 +0100
committerMartin Braun2013-01-28 11:46:18 +0100
commit1b71378943f40707d84a145ffa244f92acd4d643 (patch)
treebd435c6522b23c97950d3ad8dcb9528682bd8361
parent9ef0f125355a4541c691f18d05ad7ca7b6f7125e (diff)
downloadgnuradio-1b71378943f40707d84a145ffa244f92acd4d643.tar.gz
gnuradio-1b71378943f40707d84a145ffa244f92acd4d643.tar.bz2
gnuradio-1b71378943f40707d84a145ffa244f92acd4d643.zip
modtool: dir template update (added list for sources)
-rw-r--r--gr-utils/src/python/modtool/gr-newmod/lib/CMakeLists.txt9
1 files changed, 6 insertions, 3 deletions
diff --git a/gr-utils/src/python/modtool/gr-newmod/lib/CMakeLists.txt b/gr-utils/src/python/modtool/gr-newmod/lib/CMakeLists.txt
index f975d86e8..a9df565cf 100644
--- a/gr-utils/src/python/modtool/gr-newmod/lib/CMakeLists.txt
+++ b/gr-utils/src/python/modtool/gr-newmod/lib/CMakeLists.txt
@@ -25,7 +25,10 @@ include(GrPlatform) #define LIB_SUFFIX
include_directories(${Boost_INCLUDE_DIR})
link_directories(${Boost_LIBRARY_DIRS})
-add_library(gnuradio-howto SHARED )
+list(APPEND howto_sources
+)
+
+add_library(gnuradio-howto SHARED ${howto_sources})
target_link_libraries(gnuradio-howto ${Boost_LIBRARIES} ${GRUEL_LIBRARIES} ${GNURADIO_CORE_LIBRARIES})
set_target_properties(gnuradio-howto PROPERTIES DEFINE_SYMBOL "gnuradio_howto_EXPORTS")
@@ -46,8 +49,8 @@ include(GrTest)
include_directories(${CPPUNIT_INCLUDE_DIRS})
list(APPEND test_howto_sources
- ${CMAKE_CURRENT_SOURCE_DIR}/test_howto.cc
- ${CMAKE_CURRENT_SOURCE_DIR}/qa_howto.cc
+ ${CMAKE_CURRENT_SOURCE_DIR}/test_howto.cc
+ ${CMAKE_CURRENT_SOURCE_DIR}/qa_howto.cc
)
add_executable(test-howto ${test_howto_sources})