mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 05:25:00 +00:00
Merge pull request #94 from apolukhin/develop
Boost.DLL library integration
This commit is contained in:
commit
9c6f372d1e
8 changed files with 13 additions and 1 deletions
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -511,3 +511,6 @@
|
|||
[submodule "libs/compute"]
|
||||
path = libs/compute
|
||||
url = ../compute.git
|
||||
[submodule "libs/dll"]
|
||||
path = libs/dll
|
||||
url = ../dll.git
|
||||
|
|
|
@ -45,6 +45,7 @@ boostbook doc
|
|||
<dependency>../libs/crc/doc//crc
|
||||
<dependency>../libs/crc/doc//autodoc.xml
|
||||
<dependency>../libs/chrono/doc//chrono
|
||||
<dependency>../../libs/dll/doc//dll-doc
|
||||
<dependency>../libs/program_options/doc//autodoc.xml
|
||||
<dependency>../libs/algorithm/string/doc//autodoc.xml
|
||||
<dependency>../libs/logic/doc//reference.xml
|
||||
|
@ -95,6 +96,7 @@ boostbook doc
|
|||
<implicit-dependency>../libs/chrono/doc//chrono
|
||||
<implicit-dependency>../libs/lexical_cast/doc//lexical_cast
|
||||
<implicit-dependency>../libs/crc/doc//crc
|
||||
<implicit-dependency>../../libs/dll/doc//dll-doc
|
||||
<implicit-dependency>../libs/functional/hash/doc//hash
|
||||
#<implicit-dependency>../libs/type_traits/doc//type_traits
|
||||
<implicit-dependency>../libs/static_assert/doc//static_assert
|
||||
|
|
|
@ -47,7 +47,8 @@ install pdf-install
|
|||
../../libs/config/doc//standalone
|
||||
../../libs/context/doc//context
|
||||
../../libs/core/doc//standalone
|
||||
../../libs/date_time/xmldoc//date_time
|
||||
../../libs/date_time/xmldoc//date_time
|
||||
../../libs/dll/doc//dll-doc
|
||||
../../libs/foreach/doc//standalone
|
||||
../../libs/function/doc//function-doc
|
||||
# ../../libs/functional/overloaded_function/doc//doc
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
<xi:include href="container.auto_index.docbook"/>
|
||||
<xi:include href="crc.xml"/>
|
||||
<xi:include href="../../libs/date_time/xmldoc/date_time.xml"/>
|
||||
<xi:include href="dll.xml"/>
|
||||
<xi:include href="foreach.xml"/>
|
||||
<xi:include href="../../libs/function/doc/function.xml"/>
|
||||
<xi:include href="hash.xml"/>
|
||||
|
|
1
libs/dll
Submodule
1
libs/dll
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit b114e9411e48858de0ca8194d5d00a14af0b5b3d
|
|
@ -131,6 +131,7 @@ how to download, build, and install the libraries.</p>
|
|||
<li><a href="crc/index.html">crc</a> - Cyclic Redundancy Code, from Daryle
|
||||
Walker.</li>
|
||||
<li><a href="date_time/doc/index.html">date_time</a> - Date-Time library from Jeff Garland.</li>
|
||||
<li><a href="dll/index.html">DLL</a> - Library for comfortable work with DLL and DSO, from Antony Polukhin and Renato Tegon Forti.</li>
|
||||
<li><a href="dynamic_bitset/dynamic_bitset.html">dynamic_bitset</a> - A runtime sized version of <tt>std::bitset</tt> from Jeremy Siek and Chuck Allison.</li>
|
||||
<li><a href="endian/index.html">endian</a> - Types and conversion functions
|
||||
for correct byte ordering and more regardless of processor endianness, from
|
||||
|
@ -891,6 +892,7 @@ of arbitrary data for persistence and marshalling, from Robert Ramey</li>
|
|||
from Howard Hinnant, Beman Dawes, Vicente J. Botet Escribá.</li>
|
||||
<li><a href="context/index.html">context</a> - Context switching library, from Oliver Kowalke</li>
|
||||
<li><a href="date_time/doc/index.html">date_time</a> - Date-Time library from Jeff Garland.</li>
|
||||
<li><a href="dll/index.html">DLL</a> - Library for comfortable work with DLL and DSO, from Antony Polukhin and Renato Tegon Forti.</li>
|
||||
<li><a href="filesystem/index.html">filesystem</a> - Portable paths,
|
||||
iteration over directories, and other useful filesystem operations, from
|
||||
Beman Dawes.</li>
|
||||
|
|
|
@ -38,6 +38,7 @@ coroutine2 Oliver Kowalke <oliver.kowalke -at- gmail.com>
|
|||
crc Daryle Walker <darylew -at- hotmail.com>
|
||||
date_time Jeff Garland <jeff -at- crystalclearsoftware.com>
|
||||
disjoint_sets Jeremy Siek <jeremy.siek -at- gmail.com>
|
||||
dll Antony Polukhin <antoshkka -at- gmail.com>
|
||||
dynamic_bitset Jeremy Siek <jeremy.siek -at- gmail.com>
|
||||
endian Beman Dawes <bdawes -at- acm.org>
|
||||
exception Emil Dotchevski <emil -at- revergestudios.com>
|
||||
|
|
|
@ -77,6 +77,7 @@ run-tests libs :
|
|||
date_time/test # test-suite date_time
|
||||
detail/test # test-suite detail
|
||||
disjoint_sets # test-suite disjoint_sets
|
||||
dll/test # test-suite dll
|
||||
dynamic_bitset # test-suite dynamic_bitset
|
||||
endian/test # test-suite endian
|
||||
exception/test
|
||||
|
|
Loading…
Add table
Reference in a new issue