mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-08-05 23:51:48 +02:00
Initial ZMQ bindings.
This commit is contained in:
4
vendor/ZMQ/builds/gyp/build.bat
vendored
Normal file
4
vendor/ZMQ/builds/gyp/build.bat
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
@echo off
|
||||
:- Needs Visual Studio 2015
|
||||
"\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\vcvars32.bat"
|
||||
msbuild /m /v:m project.sln
|
80
vendor/ZMQ/builds/gyp/platform.hpp
vendored
Normal file
80
vendor/ZMQ/builds/gyp/platform.hpp
vendored
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
|
||||
|
||||
This file is part of libzmq, the ZeroMQ core engine in C++.
|
||||
|
||||
libzmq is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU Lesser General Public License (LGPL) as published
|
||||
by the Free Software Foundation; either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
As a special exception, the Contributors give you permission to link
|
||||
this library with independent modules to produce an executable,
|
||||
regardless of the license terms of these independent modules, and to
|
||||
copy and distribute the resulting executable under terms of your choice,
|
||||
provided that you also meet, for each linked independent module, the
|
||||
terms and conditions of the license of that module. An independent
|
||||
module is a module which is not derived from or based on this library.
|
||||
If you modify this library, you must extend this exception to your
|
||||
version of the library.
|
||||
|
||||
libzmq is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
||||
License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __ZMQ_PLATFORM_HPP_INCLUDED__
|
||||
#define __ZMQ_PLATFORM_HPP_INCLUDED__
|
||||
|
||||
// This file provides the configuration for Linux, Windows, and OS/X
|
||||
// as determined by ZMQ_HAVE_XXX macros passed from project.gyp
|
||||
|
||||
// Check that we're being called from our gyp makefile
|
||||
#ifndef ZMQ_GYP_BUILD
|
||||
# error "foreign platform.hpp detected, please re-configure"
|
||||
#endif
|
||||
|
||||
// Set for all platforms
|
||||
#define ZMQ_HAVE_CURVE 1
|
||||
#define ZMQ_USE_TWEETNACL 1
|
||||
|
||||
#if defined ZMQ_HAVE_WINDOWS
|
||||
# define ZMQ_USE_SELECT 1
|
||||
|
||||
#elif defined ZMQ_HAVE_OSX
|
||||
# define ZMQ_USE_KQUEUE 1
|
||||
# define HAVE_POSIX_MEMALIGN 1
|
||||
# define ZMQ_HAVE_IFADDRS 1
|
||||
# define ZMQ_HAVE_SO_KEEPALIVE 1
|
||||
# define ZMQ_HAVE_TCP_KEEPALIVE 1
|
||||
# define ZMQ_HAVE_TCP_KEEPCNT 1
|
||||
# define ZMQ_HAVE_TCP_KEEPINTVL 1
|
||||
# define ZMQ_HAVE_UIO 1
|
||||
# define HAVE_FORK 1
|
||||
|
||||
#elif defined ZMQ_HAVE_LINUX
|
||||
# define ZMQ_USE_EPOLL 1
|
||||
# define HAVE_POSIX_MEMALIGN 1
|
||||
# define ZMQ_HAVE_EVENTFD 1
|
||||
# define ZMQ_HAVE_IFADDRS 1
|
||||
# define ZMQ_HAVE_SOCK_CLOEXEC 1
|
||||
# define ZMQ_HAVE_SO_BINDTODEVICE 1
|
||||
# define ZMQ_HAVE_SO_KEEPALIVE 1
|
||||
# define ZMQ_HAVE_SO_PEERCRED 1
|
||||
# define ZMQ_HAVE_TCP_KEEPCNT 1
|
||||
# define ZMQ_HAVE_TCP_KEEPIDLE 1
|
||||
# define ZMQ_HAVE_TCP_KEEPINTVL 1
|
||||
# define ZMQ_HAVE_UIO 1
|
||||
# define HAVE_CLOCK_GETTIME 1
|
||||
# define HAVE_FORK 1
|
||||
# define HAVE_ACCEPT4 1
|
||||
|
||||
#else
|
||||
# error "No platform defined, abandoning"
|
||||
#endif
|
||||
|
||||
#endif
|
19
vendor/ZMQ/builds/gyp/project-tests.gsl
vendored
Normal file
19
vendor/ZMQ/builds/gyp/project-tests.gsl
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
.echo "Generating project-tests.gypi..."
|
||||
.output "project-tests.gypi"
|
||||
{
|
||||
'targets': [
|
||||
.for test
|
||||
{
|
||||
'target_name': '$(name)',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/$(name).cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
}$(last ()?? ""? ",")
|
||||
.endfor
|
||||
]
|
||||
}
|
917
vendor/ZMQ/builds/gyp/project-tests.gypi
vendored
Normal file
917
vendor/ZMQ/builds/gyp/project-tests.gypi
vendored
Normal file
@@ -0,0 +1,917 @@
|
||||
{
|
||||
'targets': [
|
||||
{
|
||||
'target_name': 'test_system',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_system.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_pair_inproc',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_pair_inproc.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_pair_tcp',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_pair_tcp.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_reqrep_inproc',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_reqrep_inproc.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_reqrep_tcp',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_reqrep_tcp.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_hwm',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_hwm.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_hwm_pubsub',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_hwm_pubsub.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_reqrep_device',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_reqrep_device.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_sub_forward',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_sub_forward.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_invalid_rep',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_invalid_rep.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_msg_flags',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_msg_flags.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_msg_ffn',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_msg_ffn.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_msg_init',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_msg_init.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_connect_resolve',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_connect_resolve.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_immediate',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_immediate.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_last_endpoint',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_last_endpoint.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_term_endpoint',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_term_endpoint.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_srcfd',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_srcfd.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_monitor',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_monitor.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_router_mandatory',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_router_mandatory.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_router_mandatory_hwm',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_router_mandatory_hwm.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_router_handover',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_router_handover.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_probe_router',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_probe_router.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_stream',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_stream.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_stream_empty',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_stream_empty.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_stream_disconnect',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_stream_disconnect.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_stream_timeout',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_stream_timeout.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_disconnect_inproc',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_disconnect_inproc.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_unbind_inproc',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_unbind_inproc.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_unbind_wildcard',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_unbind_wildcard.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_ctx_options',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_ctx_options.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_ctx_destroy',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_ctx_destroy.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_security_null',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_security_null.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_security_plain',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_security_plain.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_security_curve',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_security_curve.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_security_zap',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_security_zap.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_iov',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_iov.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_spec_req',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_spec_req.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_spec_rep',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_spec_rep.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_spec_dealer',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_spec_dealer.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_spec_router',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_spec_router.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_spec_pushpull',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_spec_pushpull.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_req_correlate',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_req_correlate.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_req_relaxed',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_req_relaxed.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_conflate',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_conflate.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_inproc_connect',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_inproc_connect.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_issue_566',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_issue_566.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_proxy',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_proxy.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_proxy_single_socket',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_proxy_single_socket.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_proxy_terminate',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_proxy_terminate.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_getsockopt_memset',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_getsockopt_memset.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_setsockopt',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_setsockopt.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_many_sockets',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_many_sockets.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_ipc_wildcard',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_ipc_wildcard.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_diffserv',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_diffserv.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_connect_rid',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_connect_rid.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_bind_src_address',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_bind_src_address.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_metadata',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_metadata.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_capabilities',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_capabilities.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_xpub_nodrop',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_xpub_nodrop.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_xpub_manual',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_xpub_manual.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_xpub_welcome_msg',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_xpub_welcome_msg.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_atomics',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_atomics.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_client_server',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_client_server.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_thread_safe',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_thread_safe.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_sockopt_hwm',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_sockopt_hwm.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_heartbeats',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_heartbeats.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_stream_exceeds_buffer',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_stream_exceeds_buffer.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_poller',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_poller.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_timers',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_timers.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_radio_dish',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_radio_dish.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_udp',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_udp.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_shutdown_stress',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_shutdown_stress.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_pair_ipc',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_pair_ipc.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_rebind_ipc',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_rebind_ipc.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_reqrep_ipc',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_reqrep_ipc.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_use_fd_ipc',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_use_fd_ipc.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_use_fd_tcp',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_use_fd_tcp.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_timeo',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_timeo.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_filter_ipc',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_filter_ipc.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_fork',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_fork.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_abstract_ipc',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_abstract_ipc.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
},
|
||||
{
|
||||
'target_name': 'test_pubsub',
|
||||
'type': 'executable',
|
||||
'sources': [
|
||||
'../../tests/test_pubsub.cpp',
|
||||
'../../tests/testutil.hpp'
|
||||
],
|
||||
'dependencies': [
|
||||
'libzmq'
|
||||
],
|
||||
}
|
||||
]
|
||||
}
|
85
vendor/ZMQ/builds/gyp/project-tests.xml
vendored
Normal file
85
vendor/ZMQ/builds/gyp/project-tests.xml
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
<tests script = "project-tests">
|
||||
<test name = "test_system" />
|
||||
<test name = "test_pair_inproc" />
|
||||
<test name = "test_pair_tcp" />
|
||||
<test name = "test_reqrep_inproc" />
|
||||
<test name = "test_reqrep_tcp" />
|
||||
<test name = "test_hwm" />
|
||||
<test name = "test_hwm_pubsub" />
|
||||
<test name = "test_reqrep_device" />
|
||||
<test name = "test_sub_forward" />
|
||||
<test name = "test_invalid_rep" />
|
||||
<test name = "test_msg_flags" />
|
||||
<test name = "test_msg_ffn" />
|
||||
<test name = "test_msg_init" />
|
||||
<test name = "test_connect_resolve" />
|
||||
<test name = "test_immediate" />
|
||||
<test name = "test_last_endpoint" />
|
||||
<test name = "test_term_endpoint" />
|
||||
<test name = "test_srcfd" />
|
||||
<test name = "test_monitor" />
|
||||
<test name = "test_router_mandatory" />
|
||||
<test name = "test_router_mandatory_hwm" />
|
||||
<test name = "test_router_handover" />
|
||||
<test name = "test_probe_router" />
|
||||
<test name = "test_stream" />
|
||||
<test name = "test_stream_empty" />
|
||||
<test name = "test_stream_disconnect" />
|
||||
<test name = "test_stream_timeout" />
|
||||
<test name = "test_disconnect_inproc" />
|
||||
<test name = "test_unbind_inproc" />
|
||||
<test name = "test_unbind_wildcard" />
|
||||
<test name = "test_ctx_options" />
|
||||
<test name = "test_ctx_destroy" />
|
||||
<test name = "test_security_null" />
|
||||
<test name = "test_security_plain" />
|
||||
<test name = "test_security_curve" />
|
||||
<test name = "test_security_zap" />
|
||||
<test name = "test_iov" />
|
||||
<test name = "test_spec_req" />
|
||||
<test name = "test_spec_rep" />
|
||||
<test name = "test_spec_dealer" />
|
||||
<test name = "test_spec_router" />
|
||||
<test name = "test_spec_pushpull" />
|
||||
<test name = "test_req_correlate" />
|
||||
<test name = "test_req_relaxed" />
|
||||
<test name = "test_conflate" />
|
||||
<test name = "test_inproc_connect" />
|
||||
<test name = "test_issue_566" />
|
||||
<test name = "test_proxy" />
|
||||
<test name = "test_proxy_single_socket" />
|
||||
<test name = "test_proxy_terminate" />
|
||||
<test name = "test_getsockopt_memset" />
|
||||
<test name = "test_setsockopt" />
|
||||
<test name = "test_many_sockets" />
|
||||
<test name = "test_ipc_wildcard" />
|
||||
<test name = "test_diffserv" />
|
||||
<test name = "test_connect_rid" />
|
||||
<test name = "test_bind_src_address" />
|
||||
<test name = "test_metadata" />
|
||||
<test name = "test_capabilities" />
|
||||
<test name = "test_xpub_nodrop" />
|
||||
<test name = "test_xpub_manual" />
|
||||
<test name = "test_xpub_welcome_msg" />
|
||||
<test name = "test_atomics" />
|
||||
<test name = "test_client_server" />
|
||||
<test name = "test_thread_safe" />
|
||||
<test name = "test_sockopt_hwm" />
|
||||
<test name = "test_heartbeats" />
|
||||
<test name = "test_stream_exceeds_buffer" />
|
||||
<test name = "test_poller" />
|
||||
<test name = "test_timers" />
|
||||
<test name = "test_radio_dish" />
|
||||
<test name = "test_udp" />
|
||||
<test name = "test_shutdown_stress" />
|
||||
<test name = "test_pair_ipc" />
|
||||
<test name = "test_rebind_ipc" />
|
||||
<test name = "test_reqrep_ipc" />
|
||||
<test name = "test_use_fd_ipc" />
|
||||
<test name = "test_use_fd_tcp" />
|
||||
<test name = "test_timeo" />
|
||||
<test name = "test_filter_ipc" />
|
||||
<test name = "test_fork" />
|
||||
<test name = "test_abstract_ipc" />
|
||||
<test name = "test_pubsub" />
|
||||
</tests>
|
296
vendor/ZMQ/builds/gyp/project.gyp
vendored
Normal file
296
vendor/ZMQ/builds/gyp/project.gyp
vendored
Normal file
@@ -0,0 +1,296 @@
|
||||
#
|
||||
# This is the gyp script for libzmq
|
||||
#
|
||||
# Run in builds/gyp, as follows:
|
||||
#
|
||||
# gyp --depth=. --format=make
|
||||
# make
|
||||
{
|
||||
'includes': [
|
||||
'project-tests.gypi',
|
||||
],
|
||||
'target_defaults': {
|
||||
'include_dirs': [
|
||||
'../../include',
|
||||
'.'
|
||||
],
|
||||
'defines': [
|
||||
'_REENTRANT',
|
||||
'_THREAD_SAFE',
|
||||
'ZMQ_CUSTOM_PLATFORM_HPP',
|
||||
'ZMQ_GYP_BUILD'
|
||||
],
|
||||
'conditions': [
|
||||
[ 'OS=="win"', {
|
||||
'defines': [
|
||||
'ZMQ_HAVE_WINDOWS',
|
||||
'ZMQ_STATIC',
|
||||
'FD_SETSIZE=16384',
|
||||
'_CRT_SECURE_NO_WARNINGS',
|
||||
'_WINSOCK_DEPRECATED_NO_WARNINGS'
|
||||
],
|
||||
'libraries': [
|
||||
'ws2_32',
|
||||
'advapi32',
|
||||
'iphlpapi'
|
||||
]
|
||||
}],
|
||||
[ 'OS=="mac"', {
|
||||
'defines': [
|
||||
'ZMQ_HAVE_OSX'
|
||||
],
|
||||
'xcode_settings': {
|
||||
'GCC_ENABLE_CPP_RTTI': 'YES'
|
||||
}
|
||||
}],
|
||||
[ 'OS=="linux"', {
|
||||
'defines': [
|
||||
'ZMQ_HAVE_LINUX'
|
||||
],
|
||||
'cflags_cc!': [
|
||||
'-fno-rtti'
|
||||
],
|
||||
'libraries': [
|
||||
'-lpthread'
|
||||
]
|
||||
}]
|
||||
]
|
||||
},
|
||||
'targets': [
|
||||
{
|
||||
'target_name': 'libzmq',
|
||||
'type': 'static_library',
|
||||
'sources': [
|
||||
'platform.hpp',
|
||||
'../../include/zmq.h',
|
||||
'../../src/address.cpp',
|
||||
'../../src/address.hpp',
|
||||
'../../src/array.hpp',
|
||||
'../../src/atomic_counter.hpp',
|
||||
'../../src/atomic_ptr.hpp',
|
||||
'../../src/blob.hpp',
|
||||
'../../src/client.cpp',
|
||||
'../../src/client.hpp',
|
||||
'../../src/clock.cpp',
|
||||
'../../src/clock.hpp',
|
||||
'../../src/command.hpp',
|
||||
'../../src/compat.hpp',
|
||||
'../../src/condition_variable.hpp',
|
||||
'../../src/config.hpp',
|
||||
'../../src/ctx.cpp',
|
||||
'../../src/ctx.hpp',
|
||||
'../../src/curve_client.cpp',
|
||||
'../../src/curve_client.hpp',
|
||||
'../../src/curve_client_tools.hpp',
|
||||
'../../src/curve_mechanism_base.cpp',
|
||||
'../../src/curve_mechanism_base.hpp',
|
||||
'../../src/curve_server.cpp',
|
||||
'../../src/curve_server.hpp',
|
||||
'../../src/dbuffer.hpp',
|
||||
'../../src/dealer.cpp',
|
||||
'../../src/dealer.hpp',
|
||||
'../../src/decoder.hpp',
|
||||
'../../src/decoder_allocators.cpp',
|
||||
'../../src/decoder_allocators.hpp',
|
||||
'../../src/devpoll.cpp',
|
||||
'../../src/devpoll.hpp',
|
||||
'../../src/dish.cpp',
|
||||
'../../src/dish.hpp',
|
||||
'../../src/dist.cpp',
|
||||
'../../src/dist.hpp',
|
||||
'../../src/encoder.hpp',
|
||||
'../../src/epoll.cpp',
|
||||
'../../src/epoll.hpp',
|
||||
'../../src/err.cpp',
|
||||
'../../src/err.hpp',
|
||||
'../../src/fd.hpp',
|
||||
'../../src/fq.cpp',
|
||||
'../../src/fq.hpp',
|
||||
'../../src/gssapi_client.cpp',
|
||||
'../../src/gssapi_client.hpp',
|
||||
'../../src/gssapi_mechanism_base.cpp',
|
||||
'../../src/gssapi_mechanism_base.hpp',
|
||||
'../../src/gssapi_server.cpp',
|
||||
'../../src/gssapi_server.hpp',
|
||||
'../../src/i_decoder.hpp',
|
||||
'../../src/i_encoder.hpp',
|
||||
'../../src/i_engine.hpp',
|
||||
'../../src/i_mailbox.hpp',
|
||||
'../../src/i_poll_events.hpp',
|
||||
'../../src/io_object.cpp',
|
||||
'../../src/io_object.hpp',
|
||||
'../../src/io_thread.cpp',
|
||||
'../../src/io_thread.hpp',
|
||||
'../../src/ip.cpp',
|
||||
'../../src/ip.hpp',
|
||||
'../../src/ipc_address.cpp',
|
||||
'../../src/ipc_address.hpp',
|
||||
'../../src/ipc_connecter.cpp',
|
||||
'../../src/ipc_connecter.hpp',
|
||||
'../../src/ipc_listener.cpp',
|
||||
'../../src/ipc_listener.hpp',
|
||||
'../../src/kqueue.cpp',
|
||||
'../../src/kqueue.hpp',
|
||||
'../../src/lb.cpp',
|
||||
'../../src/lb.hpp',
|
||||
'../../src/likely.hpp',
|
||||
'../../src/mailbox.cpp',
|
||||
'../../src/mailbox.hpp',
|
||||
'../../src/mailbox_safe.cpp',
|
||||
'../../src/mailbox_safe.hpp',
|
||||
'../../src/mechanism.cpp',
|
||||
'../../src/mechanism.hpp ',
|
||||
'../../src/mechanism_base.cpp',
|
||||
'../../src/mechanism_base.hpp ',
|
||||
'../../src/metadata.cpp',
|
||||
'../../src/metadata.hpp',
|
||||
'../../src/msg.cpp',
|
||||
'../../src/msg.hpp',
|
||||
'../../src/mtrie.cpp',
|
||||
'../../src/mtrie.hpp',
|
||||
'../../src/mutex.hpp',
|
||||
'../../src/norm_engine.cpp',
|
||||
'../../src/norm_engine.hpp',
|
||||
'../../src/null_mechanism.cpp',
|
||||
'../../src/null_mechanism.hpp',
|
||||
'../../src/object.cpp',
|
||||
'../../src/object.hpp',
|
||||
'../../src/options.cpp',
|
||||
'../../src/options.hpp',
|
||||
'../../src/own.cpp',
|
||||
'../../src/own.hpp',
|
||||
'../../src/pair.cpp',
|
||||
'../../src/pair.hpp',
|
||||
'../../src/pgm_receiver.cpp',
|
||||
'../../src/pgm_receiver.hpp',
|
||||
'../../src/pgm_sender.cpp',
|
||||
'../../src/pgm_sender.hpp',
|
||||
'../../src/pgm_socket.cpp',
|
||||
'../../src/pgm_socket.hpp',
|
||||
'../../src/pipe.cpp',
|
||||
'../../src/pipe.hpp',
|
||||
'../../src/plain_client.cpp',
|
||||
'../../src/plain_client.hpp',
|
||||
'../../src/plain_server.cpp',
|
||||
'../../src/plain_server.hpp',
|
||||
'../../src/poll.cpp',
|
||||
'../../src/poll.hpp',
|
||||
'../../src/poller.hpp',
|
||||
'../../src/poller_base.cpp',
|
||||
'../../src/poller_base.hpp',
|
||||
'../../src/proxy.cpp',
|
||||
'../../src/proxy.hpp',
|
||||
'../../src/pub.cpp',
|
||||
'../../src/pub.hpp',
|
||||
'../../src/pull.cpp',
|
||||
'../../src/pull.hpp',
|
||||
'../../src/push.cpp',
|
||||
'../../src/push.hpp',
|
||||
'../../src/radio.cpp',
|
||||
'../../src/radio.hpp',
|
||||
'../../src/random.cpp',
|
||||
'../../src/random.hpp',
|
||||
'../../src/raw_decoder.cpp',
|
||||
'../../src/raw_decoder.hpp',
|
||||
'../../src/raw_encoder.cpp',
|
||||
'../../src/raw_encoder.hpp',
|
||||
'../../src/reaper.cpp',
|
||||
'../../src/reaper.hpp',
|
||||
'../../src/rep.cpp',
|
||||
'../../src/rep.hpp',
|
||||
'../../src/req.cpp',
|
||||
'../../src/req.hpp',
|
||||
'../../src/router.cpp',
|
||||
'../../src/router.hpp',
|
||||
'../../src/select.cpp',
|
||||
'../../src/select.hpp',
|
||||
'../../src/server.cpp',
|
||||
'../../src/server.hpp',
|
||||
'../../src/session_base.cpp',
|
||||
'../../src/session_base.hpp',
|
||||
'../../src/signaler.cpp',
|
||||
'../../src/signaler.hpp',
|
||||
'../../src/socket_base.cpp',
|
||||
'../../src/socket_base.hpp',
|
||||
'../../src/socket_poller.cpp',
|
||||
'../../src/socket_poller.hpp',
|
||||
'../../src/socks.cpp',
|
||||
'../../src/socks.hpp',
|
||||
'../../src/socks_connecter.cpp',
|
||||
'../../src/socks_connecter.hpp',
|
||||
'../../src/stdint.hpp',
|
||||
'../../src/stream.cpp',
|
||||
'../../src/stream.hpp',
|
||||
'../../src/stream_engine.cpp',
|
||||
'../../src/stream_engine.hpp',
|
||||
'../../src/sub.cpp',
|
||||
'../../src/sub.hpp',
|
||||
'../../src/tcp.cpp',
|
||||
'../../src/tcp.hpp',
|
||||
'../../src/tcp_address.cpp',
|
||||
'../../src/tcp_address.hpp',
|
||||
'../../src/tcp_connecter.cpp',
|
||||
'../../src/tcp_connecter.hpp',
|
||||
'../../src/tcp_listener.cpp',
|
||||
'../../src/tcp_listener.hpp',
|
||||
'../../src/thread.cpp',
|
||||
'../../src/thread.hpp',
|
||||
'../../src/timers.cpp',
|
||||
'../../src/timers.hpp',
|
||||
'../../src/tipc_address.cpp',
|
||||
'../../src/tipc_address.hpp',
|
||||
'../../src/tipc_connecter.cpp',
|
||||
'../../src/tipc_connecter.hpp',
|
||||
'../../src/tipc_listener.cpp',
|
||||
'../../src/tipc_listener.hpp',
|
||||
'../../src/trie.cpp',
|
||||
'../../src/trie.hpp',
|
||||
'../../src/tweetnacl.c',
|
||||
'../../src/tweetnacl.h',
|
||||
'../../src/udp_address.cpp',
|
||||
'../../src/udp_address.hpp',
|
||||
'../../src/udp_engine.cpp',
|
||||
'../../src/udp_engine.hpp',
|
||||
'../../src/v1_decoder.cpp',
|
||||
'../../src/v1_decoder.hpp',
|
||||
'../../src/v1_encoder.cpp',
|
||||
'../../src/v1_encoder.hpp',
|
||||
'../../src/v2_decoder.cpp',
|
||||
'../../src/v2_decoder.hpp',
|
||||
'../../src/v2_encoder.cpp',
|
||||
'../../src/v2_encoder.hpp',
|
||||
'../../src/v2_protocol.hpp',
|
||||
'../../src/vmci.cpp',
|
||||
'../../src/vmci.hpp',
|
||||
'../../src/vmci_address.cpp',
|
||||
'../../src/vmci_address.hpp',
|
||||
'../../src/vmci_connecter.cpp',
|
||||
'../../src/vmci_connecter.hpp',
|
||||
'../../src/vmci_listener.cpp',
|
||||
'../../src/vmci_listener.hpp',
|
||||
'../../src/windows.hpp',
|
||||
'../../src/wire.hpp',
|
||||
'../../src/xpub.cpp',
|
||||
'../../src/xpub.hpp',
|
||||
'../../src/xsub.cpp',
|
||||
'../../src/xsub.hpp',
|
||||
'../../src/ypipe.hpp',
|
||||
'../../src/ypipe_base.hpp',
|
||||
'../../src/ypipe_conflate.hpp',
|
||||
'../../src/yqueue.hpp',
|
||||
'../../src/zap_client.cpp',
|
||||
'../../src/zap_client.hpp',
|
||||
'../../src/zmq.cpp',
|
||||
'../../src/zmq_utils.cpp'
|
||||
],
|
||||
'copies': [
|
||||
{
|
||||
'destination': '../../src',
|
||||
'files': [
|
||||
'platform.hpp'
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user