├── .gitignore
├── CHANGELOG.md
├── DISCLAIMER
├── LICENSE
├── Makefile.am
├── Makefile.in
├── README.md
├── aclocal.m4
├── build-aux
├── ar-lib
├── config.guess
├── config.sub
├── depcomp
├── install-sh
├── ltmain.sh
└── missing
├── builds
└── msvc
│ ├── .gitignore
│ ├── config.h
│ ├── properties
│ ├── Common.props
│ ├── DLL.props
│ ├── Debug.props
│ ├── DebugDEXE.props
│ ├── DebugDLL.props
│ ├── DebugLEXE.props
│ ├── DebugLIB.props
│ ├── DebugLTCG.props
│ ├── DebugSEXE.props
│ ├── EXE.props
│ ├── LIB.props
│ ├── LTCG.props
│ ├── Link.props
│ ├── Messages.props
│ ├── Output.props
│ ├── Release.props
│ ├── ReleaseDEXE.props
│ ├── ReleaseDLL.props
│ ├── ReleaseLEXE.props
│ ├── ReleaseLIB.props
│ ├── ReleaseLTCG.props
│ ├── ReleaseSEXE.props
│ ├── Win32.props
│ └── x64.props
│ ├── vs2010
│ ├── .gitignore
│ ├── czmq.import.props
│ ├── czmq.import.xml
│ ├── fncs.sln
│ ├── fncs_broker
│ │ ├── fncs_broker.props
│ │ └── fncs_broker.vcxproj
│ ├── fncs_netdelay
│ │ ├── fncs_netdelay.props
│ │ └── fncs_netdelay.vcxproj
│ ├── fncs_player
│ │ ├── fncs_player.props
│ │ └── fncs_player.vcxproj
│ ├── fncs_player_anon
│ │ ├── fncs_player_anon.props
│ │ └── fncs_player_anon.vcxproj
│ ├── fncs_tracer
│ │ ├── fncs_tracer.props
│ │ └── fncs_tracer.vcxproj
│ ├── libfncs.import.props
│ ├── libfncs.import.xml
│ ├── libfncs
│ │ ├── libfncs.props
│ │ ├── libfncs.vcxproj
│ │ └── libfncs.vcxproj.filters
│ ├── libsodium.import.props
│ ├── libsodium.import.xml
│ ├── libzmq.import.props
│ └── libzmq.import.xml
│ ├── vs2012
│ ├── .gitignore
│ ├── czmq.import.props
│ ├── czmq.import.xml
│ ├── fncs.sln
│ ├── fncs_broker
│ │ ├── fncs_broker.props
│ │ └── fncs_broker.vcxproj
│ ├── fncs_netdelay
│ │ ├── fncs_netdelay.props
│ │ └── fncs_netdelay.vcxproj
│ ├── fncs_player
│ │ ├── fncs_player.props
│ │ └── fncs_player.vcxproj
│ ├── fncs_player_anon
│ │ ├── fncs_player_anon.props
│ │ └── fncs_player_anon.vcxproj
│ ├── fncs_tracer
│ │ ├── fncs_tracer.props
│ │ └── fncs_tracer.vcxproj
│ ├── libfncs.import.props
│ ├── libfncs.import.xml
│ ├── libfncs
│ │ ├── libfncs.props
│ │ ├── libfncs.vcxproj
│ │ └── libfncs.vcxproj.filters
│ ├── libsodium.import.props
│ ├── libsodium.import.xml
│ ├── libzmq.import.props
│ └── libzmq.import.xml
│ └── vs2013
│ ├── .gitignore
│ ├── czmq.import.props
│ ├── czmq.import.xml
│ ├── fncs.sln
│ ├── fncs_broker
│ ├── fncs_broker.props
│ └── fncs_broker.vcxproj
│ ├── fncs_netdelay
│ ├── fncs_netdelay.props
│ └── fncs_netdelay.vcxproj
│ ├── fncs_player
│ ├── fncs_player.props
│ └── fncs_player.vcxproj
│ ├── fncs_player_anon
│ ├── fncs_player_anon.props
│ └── fncs_player_anon.vcxproj
│ ├── fncs_tracer
│ ├── fncs_tracer.props
│ └── fncs_tracer.vcxproj
│ ├── libfncs.import.props
│ ├── libfncs.import.xml
│ ├── libfncs
│ ├── libfncs.props
│ ├── libfncs.vcxproj
│ └── libfncs.vcxproj.filters
│ ├── libsodium.import.props
│ ├── libsodium.import.xml
│ ├── libzmq.import.props
│ └── libzmq.import.xml
├── config.h.in
├── configure
├── configure.ac
├── contrib
├── log.h
└── yaml-cpp
│ ├── .hgeol
│ ├── .hgignore
│ ├── CMakeLists.txt
│ ├── include
│ └── yaml-cpp
│ │ ├── aliasmanager.h
│ │ ├── anchor.h
│ │ ├── binary.h
│ │ ├── contrib
│ │ ├── anchordict.h
│ │ └── graphbuilder.h
│ │ ├── conversion.h
│ │ ├── dll.h
│ │ ├── emitfromevents.h
│ │ ├── emitter.h
│ │ ├── emittermanip.h
│ │ ├── eventhandler.h
│ │ ├── exceptions.h
│ │ ├── iterator.h
│ │ ├── ltnode.h
│ │ ├── mark.h
│ │ ├── node.h
│ │ ├── nodeimpl.h
│ │ ├── nodereadimpl.h
│ │ ├── nodeutil.h
│ │ ├── noncopyable.h
│ │ ├── null.h
│ │ ├── ostream.h
│ │ ├── parser.h
│ │ ├── stlemitter.h
│ │ ├── stlnode.h
│ │ ├── traits.h
│ │ └── yaml.h
│ ├── install.txt
│ ├── license.txt
│ ├── src
│ ├── aliasmanager.cpp
│ ├── binary.cpp
│ ├── collectionstack.h
│ ├── contrib
│ │ ├── graphbuilder.cpp
│ │ ├── graphbuilderadapter.cpp
│ │ └── graphbuilderadapter.h
│ ├── conversion.cpp
│ ├── directives.cpp
│ ├── directives.h
│ ├── emitfromevents.cpp
│ ├── emitter.cpp
│ ├── emitterstate.cpp
│ ├── emitterstate.h
│ ├── emitterutils.cpp
│ ├── emitterutils.h
│ ├── exp.cpp
│ ├── exp.h
│ ├── indentation.h
│ ├── iterator.cpp
│ ├── iterpriv.h
│ ├── node.cpp
│ ├── nodebuilder.cpp
│ ├── nodebuilder.h
│ ├── nodeownership.cpp
│ ├── nodeownership.h
│ ├── null.cpp
│ ├── ostream.cpp
│ ├── parser.cpp
│ ├── ptr_stack.h
│ ├── ptr_vector.h
│ ├── regex.cpp
│ ├── regex.h
│ ├── regeximpl.h
│ ├── scanner.cpp
│ ├── scanner.h
│ ├── scanscalar.cpp
│ ├── scanscalar.h
│ ├── scantag.cpp
│ ├── scantag.h
│ ├── scantoken.cpp
│ ├── setting.h
│ ├── simplekey.cpp
│ ├── singledocparser.cpp
│ ├── singledocparser.h
│ ├── stream.cpp
│ ├── stream.h
│ ├── streamcharsource.h
│ ├── stringsource.h
│ ├── tag.cpp
│ ├── tag.h
│ └── token.h
│ ├── test
│ ├── CMakeLists.txt
│ ├── emittertests.cpp
│ ├── emittertests.h
│ ├── main.cpp
│ ├── nodetests.h
│ ├── old-api
│ │ ├── parsertests.cpp
│ │ └── spectests.cpp
│ ├── parsertests.h
│ ├── specexamples.h
│ ├── spectests.cpp
│ ├── spectests.h
│ ├── tests.cpp
│ └── tests.h
│ ├── util
│ ├── CMakeLists.txt
│ ├── api.cpp
│ └── parse.cpp
│ └── yaml-cpp.pc.cmake
├── m4
├── fncs_arg_parse.m4
├── fncs_check_func.m4
├── fncs_check_header.m4
├── fncs_check_package.m4
├── fncs_cxx_nullptr.m4
├── libtool.m4
├── ltoptions.m4
├── ltsugar.m4
├── ltversion.m4
└── lt~obsolete.m4
├── matlab
├── .gitignore
├── build.sh
├── build_mex.bat
├── fncs_die.cpp
├── fncs_finalize.cpp
├── fncs_get_events.cpp
├── fncs_get_events_size.cpp
├── fncs_get_value.cpp
├── fncs_get_values.cpp
├── fncs_get_values_size.cpp
├── fncs_initialize.cpp
├── fncs_is_initialized.cpp
├── fncs_publish.cpp
├── fncs_publish_anon.cpp
├── fncs_route.cpp
├── fncs_time_request.cpp
└── to_fncs_time.hpp
├── python
├── fncs.cpp
├── fncs.py
├── fncs.pyx
├── fncshpp.pxd
├── setup.py
└── test.py
├── src
├── broker.cpp
├── echo.cpp
├── echo.hpp
├── fncs.cpp
├── fncs.h
├── fncs.hpp
├── fncs_capi.cpp
├── fncs_internal.hpp
├── libfncs.pc.in
├── libfncs.vers
├── log.hpp
├── player.cpp
└── tracer.cpp
├── tests
├── config.cpp
├── netdelay.cpp
└── test.cpp
└── version.sh
/.gitignore:
--------------------------------------------------------------------------------
1 | *~
2 | *.swp
3 | *.o
4 | *.lo
5 | .deps
6 | .dirstamp
7 | .libs
8 | *.exe
9 | Makefile
10 | autom4te.cache/
11 | config.h
12 | config.log
13 | config.status
14 | libfncs.la
15 | libtool
16 | stamp-h1
17 | bld*/
18 | /bin/
19 | /obj/
20 | /lib/
21 | .autotools
22 | .cproject
23 | .project
24 | .pydevproject
25 | .settings/
26 | fncs_broker
27 | fncs_player
28 | fncs_player_anon
29 | fncs_tracer
30 | libyamlcpp.la
31 | src/libfncs.pc
32 |
--------------------------------------------------------------------------------
/DISCLAIMER:
--------------------------------------------------------------------------------
1 | This material was prepared as an account of work sponsored by an agency
2 | of the United States Government. Neither the United States Government
3 | nor the United States Department of Energy, nor Battelle, nor any of
4 | their employees, nor any jurisdiction or organization that has
5 | cooperated in the development of these materials, makes any warranty,
6 | express or implied, or assumes any legal liability or responsibility for
7 | the accuracy, completeness, or usefulness or any information, apparatus,
8 | product, software, or process disclosed, or represents that its use
9 | would not infringe privately owned rights.
10 |
11 | Reference herein to any specific commercial product, process, or service
12 | by trade name, trademark, manufacturer, or otherwise does not
13 | necessarily constitute or imply its endorsement, recommendation, or
14 | favoring by the United States Government or any agency thereof, or
15 | Battelle Memorial Institute. The views and opinions of authors expressed
16 | herein do not necessarily state or reflect those of the United States
17 | Government or any agency thereof.
18 |
19 | PACIFIC NORTHWEST NATIONAL LABORATORY
20 | operated by
21 | BATTELLE
22 | for the
23 | UNITED STATES DEPARTMENT OF ENERGY
24 | under Contract DE-AC05-76RL01830
25 |
26 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Framework for Network Co-Simulation (FNCS) 2.0
2 |
3 | Copyright © 2013, Battelle Memorial Institute
4 | All rights reserved.
5 |
6 | 1. Battelle Memorial Institute (hereinafter Battelle) hereby grants permission
7 | to any person or entity lawfully obtaining a copy of this software and
8 | associated documentation files (hereinafter “the Software”) to redistribute
9 | and use the Software in source and binary forms, with or without
10 | modification. Such person or entity may use, copy, modify, merge, publish,
11 | distribute, sublicense, and/or sell copies of the Software, and may permit
12 | others to do so, subject to the following conditions:
13 |
14 | - Redistributions of source code must retain the above copyright notice,
15 | this list of conditions and the following disclaimers.
16 |
17 | - Redistributions in binary form must reproduce the above copyright notice,
18 | this list of conditions and the following disclaimer in the documentation
19 | and/or other materials provided with the distribution.
20 |
21 | - Other than as used herein, neither the name Battelle Memorial Institute or
22 | Battelle may be used in any form whatsoever without the express written
23 | consent of Battelle.
24 |
25 | - Redistributions of the software in any form, and publications and
26 | presentations based on work performed using the software should include
27 | the following acknowledgement:
28 |
29 | The FNCS Software was developed by Battelle at the Pacific Northwest
30 | National Laboratory under Contract Number DE-AC05-76RL01830 with the
31 | U.S. Department of Energy.
32 |
33 | 2. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
34 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
35 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
36 | ARE DISCLAIMED. IN NO EVENT SHALL BATTELLE OR CONTRIBUTORS BE LIABLE FOR ANY
37 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
38 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
39 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
40 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
42 | THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43 |
44 |
--------------------------------------------------------------------------------
/builds/msvc/.gitignore:
--------------------------------------------------------------------------------
1 | *.opensdf
2 | *.suo
3 | *.sdf
4 | *.user
5 | *.aps
6 | *.log
7 |
--------------------------------------------------------------------------------
/builds/msvc/config.h:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2007-2011 iMatix Corporation
3 | Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
4 |
5 | This file is part of 0MQ.
6 |
7 | 0MQ is free software; you can redistribute it and/or modify it under
8 | the terms of the GNU Lesser General Public License as published by
9 | the Free Software Foundation; either version 3 of the License, or
10 | (at your option) any later version.
11 |
12 | 0MQ is distributed in the hope that it will be useful,
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 | GNU Lesser General Public License for more details.
16 |
17 | You should have received a copy of the GNU Lesser General Public License
18 | along with this program. If not, see .
19 | */
20 |
21 | #ifndef __PLATFORM_H_INCLUDED__
22 | #define __PLATFORM_H_INCLUDED__
23 |
24 | // This is the platform definition for the MSVC platform.
25 | // As a first step of the build process it is copied to
26 | // zmq directory to take place of platform.hpp generated from
27 | // platform.hpp.in on platforms supported by GNU autotools.
28 | // Place any MSVC-specific definitions here.
29 |
30 | #define CZMQ_HAVE_WINDOWS
31 |
32 | #define HAVE_LIBUUID 1
33 |
34 | #endif
35 |
--------------------------------------------------------------------------------
/builds/msvc/properties/Common.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Common Settings
6 | Unicode
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | true
16 | UNICODE;_UNICODE;%(PreprocessorDefinitions)
17 | Level3
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/builds/msvc/properties/DLL.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Dynamic Library
6 | dynamic
7 | .dll
8 |
9 |
10 |
11 |
12 | _DLL;_WINDLL;%(PreprocessorDefinitions)
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/builds/msvc/properties/Debug.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | <_PropertySheetDisplayName>Debug Settings
10 | Debug
11 |
12 |
13 |
14 |
15 | EnableFastChecks
16 | ProgramDatabase
17 | true
18 | Disabled
19 | _DEBUG;%(PreprocessorDefinitions)
20 |
21 |
22 | _DEBUG;%(PreprocessorDefinitions)
23 |
24 |
25 | true
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/builds/msvc/properties/DebugDEXE.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Console Debug Dynamic
6 | dynamic
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | MultiThreadedDebugDLL
17 | true
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/builds/msvc/properties/DebugDLL.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Dynamic Debug Library
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | MultiThreadedDebugDLL
16 | true
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/builds/msvc/properties/DebugLEXE.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Console Debug Link Time Code Generation
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | MultiThreadedDebug
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/builds/msvc/properties/DebugLIB.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Static Debug Library
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | OldStyle
16 | MultiThreadedDebug
17 | true
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/builds/msvc/properties/DebugLTCG.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Static Debug Link Time Code Generation Library
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | OldStyle
16 | MultiThreadedDebug
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/builds/msvc/properties/DebugSEXE.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Console Debug Static
6 | static
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | MultiThreadedDebug
17 | true
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/builds/msvc/properties/EXE.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Console Application
6 | true
7 |
8 |
9 |
10 |
11 | _CONSOLE;%(PreprocessorDefinitions)
12 |
13 |
14 | Console
15 |
16 |
17 |
--------------------------------------------------------------------------------
/builds/msvc/properties/LIB.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Static Library
6 | static
7 | .lib
8 |
9 |
10 |
11 |
12 | _LIB;%(PreprocessorDefinitions)
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/builds/msvc/properties/LTCG.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Link Time Code Generation Library
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/builds/msvc/properties/Link.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Link Time Code Generation Settings
6 | ltcg
7 |
8 |
9 |
10 |
11 | true
12 |
13 |
14 | UseLinkTimeCodeGeneration
15 |
16 |
17 | true
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/builds/msvc/properties/Messages.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Build Messages
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/builds/msvc/properties/Output.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Output Settings
6 |
7 | $(ProjectDir)..\..\
8 | $(ProjectDir)..\..\..\..\
9 | $(ProjectDir)..\..\..\..\..\
10 | $(ProjectDir)..\..\..\..\bin\$(PlatformName)\$(DebugOrRelease)\$(PlatformToolset)\$(DefaultLinkage)\
11 | $(ProjectDir)..\..\..\..\obj\$(TargetName)\$(PlatformName)\$(DebugOrRelease)\$(PlatformToolset)\$(DefaultLinkage)\
12 | $(OutDir)
13 | $(TargetName)
14 | $(TargetDir)$(TargetName)$(TargetExt)
15 |
16 |
17 |
18 |
19 | $(OutDir)$(TargetName).lib
20 |
21 |
22 | $(OutDir)$(TargetName).log
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/builds/msvc/properties/Release.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | <_PropertySheetDisplayName>Release Settings
10 | Release
11 | false
12 |
13 |
14 |
15 |
16 | /Oy- %(AdditionalOptions)
17 |
18 | true
19 | true
20 | OnlyExplicitInline
21 | false
22 | MaxSpeed
23 | NDEBUG;%(PreprocessorDefinitions)
24 |
25 |
26 | NDEBUG;%(PreprocessorDefinitions)
27 |
28 |
29 | true
30 |
31 | true
32 |
33 |
34 |
35 |
36 |
37 | StreamingSIMDExtensions2
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/builds/msvc/properties/ReleaseDEXE.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Console Release Dynamic
6 | dynamic
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | MultiThreadedDLL
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/builds/msvc/properties/ReleaseDLL.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Dynamic Release Library
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | MultiThreadedDLL
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/builds/msvc/properties/ReleaseLEXE.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Console Release Link Time Code Generation
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | MultiThreaded
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/builds/msvc/properties/ReleaseLIB.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Static Release Library
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | MultiThreaded
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/builds/msvc/properties/ReleaseLTCG.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Static Release Link Time Code Generation Library
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | MultiThreaded
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/builds/msvc/properties/ReleaseSEXE.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>Console Release Static
6 | static
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | MultiThreaded
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/builds/msvc/properties/Win32.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>x86 Settings
6 |
7 |
8 |
9 |
10 | WIN32;_WIN32;%(PreprocessorDefinitions)
11 |
12 |
13 | MachineX86
14 |
15 |
16 | /MACHINE:X86 %(AdditionalOptions)
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/builds/msvc/properties/x64.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>x64 Settings
6 |
7 |
8 |
9 |
10 |
13 | WIN32;_WIN32;WIN64;_WIN64;%(PreprocessorDefinitions)
14 |
15 |
16 | MachineX64
17 |
18 |
19 | /MACHINE:X64 %(AdditionalOptions)
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/builds/msvc/vs2010/.gitignore:
--------------------------------------------------------------------------------
1 | /ipch/
2 |
--------------------------------------------------------------------------------
/builds/msvc/vs2010/czmq.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/builds/msvc/vs2010/fncs_broker/fncs_broker.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Broker Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2010/fncs_netdelay/fncs_netdelay.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Network Delay Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2010/fncs_player/fncs_player.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Player Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2010/fncs_tracer/fncs_tracer.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Tracer Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2010/libfncs.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/builds/msvc/vs2010/libfncs/libfncs.vcxproj.filters:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 | src
12 |
13 |
14 | src
15 |
16 |
17 | src
18 |
19 |
20 |
21 |
22 | {48f852d3-9723-4499-bf1a-35c0234b8ba9}
23 |
24 |
25 |
26 |
27 | src
28 |
29 |
30 | src
31 |
32 |
33 | src
34 |
35 |
36 | src
37 |
38 |
39 | src
40 |
41 |
42 |
48 |
49 |
--------------------------------------------------------------------------------
/builds/msvc/vs2010/libsodium.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/builds/msvc/vs2010/libzmq.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/builds/msvc/vs2012/.gitignore:
--------------------------------------------------------------------------------
1 | /ipch/
2 |
--------------------------------------------------------------------------------
/builds/msvc/vs2012/czmq.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/builds/msvc/vs2012/fncs_broker/fncs_broker.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Broker Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2012/fncs_netdelay/fncs_netdelay.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Network Delay Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2012/fncs_player/fncs_player.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Player Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2012/fncs_tracer/fncs_tracer.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Tracer Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2012/libfncs.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/builds/msvc/vs2012/libfncs/libfncs.vcxproj.filters:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 | src
12 |
13 |
14 | src
15 |
16 |
17 | src
18 |
19 |
20 |
21 |
22 | {48f852d3-9723-4499-bf1a-35c0234b8ba9}
23 |
24 |
25 |
26 |
27 | src
28 |
29 |
30 | src
31 |
32 |
33 | src
34 |
35 |
36 | src
37 |
38 |
39 | src
40 |
41 |
42 |
48 |
49 |
--------------------------------------------------------------------------------
/builds/msvc/vs2012/libsodium.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/builds/msvc/vs2012/libzmq.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/builds/msvc/vs2013/.gitignore:
--------------------------------------------------------------------------------
1 | /ipch/
2 |
--------------------------------------------------------------------------------
/builds/msvc/vs2013/czmq.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/builds/msvc/vs2013/fncs_broker/fncs_broker.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Broker Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2013/fncs_netdelay/fncs_netdelay.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Network Delay Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2013/fncs_player/fncs_player.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Player Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2013/fncs_tracer/fncs_tracer.props:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | <_PropertySheetDisplayName>FNCS Tracer Common Settings
6 | AllRules.ruleset
7 | false
8 |
9 |
10 |
11 |
12 |
13 |
14 | $(BuildRoot);$(ProjectDir)..\..\..\..\src;$(ProjectDir)..\..\..\..\contrib;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\include;$(ProjectDir)..\..\..\..\contrib\yaml-cpp\src;%(AdditionalIncludeDirectories)
15 | CompileAsCpp
16 | %(DisableSpecificWarnings)
17 | false
18 | %(PreprocessorDefinitions)
19 |
20 |
21 | Iphlpapi.lib;Rpcrt4.lib;Ws2_32.lib;%(AdditionalDependencies)
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 | dynamic
36 | dynamic
37 | dynamic
38 | dynamic
39 |
40 |
41 | ltcg
42 | ltcg
43 | ltcg
44 | ltcg
45 |
46 |
47 | static
48 | static
49 | static
50 | static
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
--------------------------------------------------------------------------------
/builds/msvc/vs2013/libfncs.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/builds/msvc/vs2013/libfncs/libfncs.vcxproj.filters:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 | src
12 |
13 |
14 | src
15 |
16 |
17 | src
18 |
19 |
20 |
21 |
22 | {48f852d3-9723-4499-bf1a-35c0234b8ba9}
23 |
24 |
25 |
26 |
27 | src
28 |
29 |
30 | src
31 |
32 |
33 | src
34 |
35 |
36 | src
37 |
38 |
39 | src
40 |
41 |
42 |
48 |
49 |
--------------------------------------------------------------------------------
/builds/msvc/vs2013/libsodium.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/builds/msvc/vs2013/libzmq.import.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/contrib/yaml-cpp/.hgeol:
--------------------------------------------------------------------------------
1 | **.h = native
2 | **.c = native
3 | **.cpp = native
4 | **.txt = native
5 |
--------------------------------------------------------------------------------
/contrib/yaml-cpp/.hgignore:
--------------------------------------------------------------------------------
1 | syntax: glob
2 |
--------------------------------------------------------------------------------
/contrib/yaml-cpp/include/yaml-cpp/aliasmanager.h:
--------------------------------------------------------------------------------
1 | #ifndef ALIASMANAGER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
2 | #define ALIASMANAGER_H_62B23520_7C8E_11DE_8A39_0800200C9A66
3 |
4 | #if defined(_MSC_VER) || (defined(__GNUC__) && (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) || (__GNUC__ >= 4)) // GCC supports "pragma once" correctly since 3.4
5 | #pragma once
6 | #endif
7 |
8 | #include "yaml-cpp/anchor.h"
9 | #include