aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPiotr Krysik <ptrkrysik@gmail.com>2018-03-04 23:01:43 +0100
committerPiotr Krysik <ptrkrysik@gmail.com>2018-03-04 23:01:43 +0100
commit63492bd93c3ea83e0ae9a47224666e95d4c48aad (patch)
tree3716b3057d87776a48b015335e7f9ccc5bf3c823
parentb1e67fe527db0ec33f1a25318448123c726eed2a (diff)
Fix missing list name error in the main CMakeLists.txt file
-rw-r--r--CMakeLists.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index db15929..71532e4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -168,6 +168,7 @@ endif()
########################################################################
# Setup the include and linker paths
########################################################################
+
list (APPEND grgsm_include_directories
${CMAKE_SOURCE_DIR}/lib
${CMAKE_SOURCE_DIR}/include
@@ -189,7 +190,7 @@ include_directories(
${grgsm_include_directories}
)
-list (APPEND
+list (APPEND grgsm_link_directories
${Boost_LIBRARY_DIRS}
${CPPUNIT_LIBRARY_DIRS}
${GNURADIO_ALL_LIBRARY_DIRS}