Commits
Michael Dickens authored 39cf64b149d
1 + | --- CMakeLists.txt.orig |
2 + | +++ CMakeLists.txt |
3 + | |
4 + | message(FATAL_ERROR "CppUnit required to compile dvbs2") |
5 + | endif() |
6 + | |
7 + | +include(GrMiscUtils) |
8 + | +GR_LOGGING() |
9 + | + |
10 + | ######################################################################## |
11 + | # Setup the include and linker paths |
12 + | ######################################################################## |
13 + | |
14 + | ${Boost_INCLUDE_DIRS} |
15 + | ${CPPUNIT_INCLUDE_DIRS} |
16 + | ${GNURADIO_ALL_INCLUDE_DIRS} |
17 + | + ${LOG4CPP_INCLUDE_DIRS} |
18 + | ) |
19 + | |
20 + | link_directories( |
21 + | ${Boost_LIBRARY_DIRS} |
22 + | ${CPPUNIT_LIBRARY_DIRS} |
23 + | ${GNURADIO_RUNTIME_LIBRARY_DIRS} |
24 + | + ${LOG4CPP_LIBRARY_DIRS} |
25 + | ) |
26 + | |
27 + | # Set component parameters |
28 + | --- lib/CMakeLists.txt.orig |
29 + | +++ lib/CMakeLists.txt |
30 + | |
31 + | endif(NOT dvbs2_sources) |
32 + | |
33 + | add_library(gnuradio-dvbs2 SHARED ${dvbs2_sources}) |
34 + | -target_link_libraries(gnuradio-dvbs2 ${Boost_LIBRARIES} ${GNURADIO_ALL_LIBRARIES}) |
35 + | +target_link_libraries(gnuradio-dvbs2 ${Boost_LIBRARIES} ${GNURADIO_ALL_LIBRARIES} ${LOG4CPP_LIBRARIES}) |
36 + | set_target_properties(gnuradio-dvbs2 PROPERTIES DEFINE_SYMBOL "gnuradio_dvbs2_EXPORTS") |
37 + | |
38 + | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall") |