0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-26 23:01:04 +08:00

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'.
This commit is contained in:
hitstergtd 2016-05-04 16:12:27 +01:00
parent 745e07d93c
commit b470ed451f

View File

@ -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)
#-----------------------------------------------------------------------------