summaryrefslogtreecommitdiff
path: root/gr-wavelet
diff options
context:
space:
mode:
authorTom Rondeau2012-05-02 11:45:29 -0400
committerTom Rondeau2012-05-02 11:45:29 -0400
commit7f8331808f99a9747bed39e55bbee98bc58c6038 (patch)
tree63ce6ac63d016cf5acb343a64d5174c1c859eb3b /gr-wavelet
parentf64b971f34ab813f70b0680ec7ae02744343ef3c (diff)
downloadgnuradio-7f8331808f99a9747bed39e55bbee98bc58c6038.tar.gz
gnuradio-7f8331808f99a9747bed39e55bbee98bc58c6038.tar.bz2
gnuradio-7f8331808f99a9747bed39e55bbee98bc58c6038.zip
build: reworking cmake structure for include and lib directories. I think this is cleaner.
We also probably don't need the link_directories (according to the cmake guys, this is no longer necessary).
Diffstat (limited to 'gr-wavelet')
-rw-r--r--gr-wavelet/lib/CMakeLists.txt9
1 files changed, 3 insertions, 6 deletions
diff --git a/gr-wavelet/lib/CMakeLists.txt b/gr-wavelet/lib/CMakeLists.txt
index f0d9068b7..3247c17b5 100644
--- a/gr-wavelet/lib/CMakeLists.txt
+++ b/gr-wavelet/lib/CMakeLists.txt
@@ -21,19 +21,16 @@
# Setup the include and linker paths
########################################################################
include_directories(
- ${GNURADIO_CORE_INCLUDE_DIRS}
${GR_WAVELET_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
+ ${GNURADIO_CORE_INCLUDE_DIRS}
+ ${Boost_INCLUDE_DIRS}
+ ${GSL_INCLUDE_DIRS}
)
-include_directories(${WAVELET_INCLUDE_DIRS})
link_directories(${WAVELET_LIBRARY_DIRS})
-
-include_directories(${Boost_INCLUDE_DIRS})
link_directories(${Boost_LIBRARY_DIRS})
-
-include_directories(${GSL_INCLUDE_DIRS})
link_directories(${GSL_LIBRARY_DIRS})
########################################################################