aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorPiotr Krysik <ptrkrysik@gmail.com>2018-03-04 22:08:52 +0100
committerPiotr Krysik <ptrkrysik@gmail.com>2018-03-04 22:08:52 +0100
commit86c916400092eeba0686abe5e97dd150828c6b8b (patch)
tree2af89b990b851d0f4a82e18c23b408742fbbb3a5 /lib
parent3e7841211c1c349b94acd09be3a5042bd863c2ea (diff)
Change buildsystem message on libosmocore not being found
Diffstat (limited to 'lib')
-rw-r--r--lib/decoding/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/decoding/CMakeLists.txt b/lib/decoding/CMakeLists.txt
index bb5ddde..c9fc744 100644
--- a/lib/decoding/CMakeLists.txt
+++ b/lib/decoding/CMakeLists.txt
@@ -18,12 +18,11 @@
# Boston, MA 02110-1301, USA.
if(NOT LIBOSMOCORE_FOUND OR NOT LIBOSMOCODEC_FOUND)
- message(STATUS "Libosmocore installation not found - compiling local version")
add_subdirectory(osmocom/core)
add_subdirectory(osmocom/codec)
add_subdirectory(osmocom/gsm)
+ add_subdirectory(osmocom/coding)
elseif(NOT LIBOSMOCODING_FOUND)
- message(STATUS "Libosmocore found but libosmocoding is missing - compiling local version")
add_subdirectory(osmocom/coding)
endif()