aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-09-10 16:26:32 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-09-10 16:26:32 +0200
commit50d95edfafa3d17ef3740831408017df60d6534f (patch)
tree5a3d9bbd37afda517725b94732176a3a6587526f
parent8a572df53a02f59bcbcb0d3944255a9a1a83bfd1 (diff)
downloadtoolame-dab-50d95edfafa3d17ef3740831408017df60d6534f.tar.gz
toolame-dab-50d95edfafa3d17ef3740831408017df60d6534f.tar.bz2
toolame-dab-50d95edfafa3d17ef3740831408017df60d6534f.zip
Fix cosmetic errors in CMake messages
-rw-r--r--CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 16ac794..a263fb7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -58,7 +58,7 @@ find_package(Threads REQUIRED)
# libzmq
pkg_check_modules(ZMQ libzmq>=4.0 REQUIRED)
if(NOT ZMQ_FOUND)
- message(FATAL_ERROR "libmzq required to compile toolame-dab \n")
+ message(FATAL_ERROR "libzmq required to compile Toolame-DAB \n")
endif()
include_directories(${ZMQ_INCLUDE_DIRS})
@@ -84,7 +84,7 @@ option(ENABLE_INPUT_JACK
if(ENABLE_INPUT_VLC)
if(NOT VLC_FOUND)
- message(FATAL_ERROR "libvlc required to compile toolame-dab with ENABLE_INPUT_VLC \n")
+ message(FATAL_ERROR "libvlc required to compile Toolame-DAB with ENABLE_INPUT_VLC \n")
endif()
add_definitions(-DVLC_INPUT)
include_directories(${VLC_INCLUDE_DIRS})
@@ -94,7 +94,7 @@ endif()
if(ENABLE_INPUT_JACK)
if(NOT JACK_FOUND)
- message(FATAL_ERROR "libjack required to compile toolame-dab with ENABLE_INPUT_JACK \n")
+ message(FATAL_ERROR "libjack required to compile Toolame-DAB with ENABLE_INPUT_JACK \n")
endif()
add_definitions(-DJACK_INPUT)
include_directories(${JACK_INCLUDE_DIRS})