From b470ed451ff01cc97fa63ff94e52a0ff6a0a82b5 Mon Sep 17 00:00:00 2001 From: hitstergtd Date: Wed, 4 May 2016 16:12:27 +0100 Subject: [PATCH] Problem: ZMQ_HAVE_TIPC option for CMake is broken Solution: Fix it - there was a typo in the source list variable; it should be 'cpp-sources' and not 'cpp-source'. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 05ef4558..060b1b1c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -569,7 +569,7 @@ endif (WITH_VMCI) if (ZMQ_HAVE_TIPC) add_definitions (-DZMQ_HAVE_TIPC) - list (APPEND cxx-source tipc_address.cpp tipc_connecter.cpp tipc_listener.cpp) + list (APPEND cxx-sources tipc_address.cpp tipc_connecter.cpp tipc_listener.cpp) endif (ZMQ_HAVE_TIPC) #-----------------------------------------------------------------------------