-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added evaluation of PDF hyperlink specials (closes #74)
- Loading branch information
Showing
24 changed files
with
3,599 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,26 @@ | ||
Martin Gieseking <[email protected]> | ||
author of dvisvgm | ||
|
||
Yann Collet | ||
libs/xxHash/xxhash.* | ||
https://github.com/Cyan4973/xxHash | ||
|
||
Google Inc. | ||
libs/woff2/brotli/* | ||
libs/woff2/include/* | ||
libs/woff2/src/* | ||
https://github.com/google/brotli | ||
https://github.com/google/woff2 | ||
|
||
Angus Johnson | ||
libs/clipper/clipper.* | ||
https://sourceforge.net/projects/polyclipping/ | ||
|
||
Michael Park | ||
libs/variant/include/mpark/* | ||
https://github.com/mpark/variant | ||
|
||
George Williams | ||
libs/ff-woff/* | ||
https://github.com/fontforge/fontforge | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
set(VARIANT_INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/include CACHE PATH "variant include directory") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Boost Software License - Version 1.0 - August 17th, 2003 | ||
|
||
Permission is hereby granted, free of charge, to any person or organization | ||
obtaining a copy of the software and accompanying documentation covered by | ||
this license (the "Software") to use, reproduce, display, distribute, | ||
execute, and transmit the Software, and to prepare derivative works of the | ||
Software, and to permit third-parties to whom the Software is furnished to | ||
do so, all subject to the following: | ||
|
||
The copyright notices in the Software and this entire statement, including | ||
the above license grant, this restriction and the following disclaimer, | ||
must be included in all copies of the Software, in whole or in part, and | ||
all derivative works of the Software, unless such copies or derivative | ||
works are solely in the form of machine-executable object code generated by | ||
a source language processor. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT | ||
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE | ||
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, | ||
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
noinst_HEADERS = \ | ||
include/mpark/config.hpp \ | ||
include/mpark/in_place.hpp \ | ||
include/mpark/lib.hpp \ | ||
include/mpark/variant.hpp | ||
|
||
EXTRA_DIST = LICENSE.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// MPark.Variant | ||
// | ||
// Copyright Michael Park, 2015-2017 | ||
// | ||
// Distributed under the Boost Software License, Version 1.0. | ||
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) | ||
|
||
#ifndef MPARK_IN_PLACE_HPP | ||
#define MPARK_IN_PLACE_HPP | ||
|
||
#include <cstddef> | ||
|
||
#include "config.hpp" | ||
|
||
namespace mpark { | ||
|
||
struct in_place_t { explicit in_place_t() = default; }; | ||
|
||
template <std::size_t I> | ||
struct in_place_index_t { explicit in_place_index_t() = default; }; | ||
|
||
template <typename T> | ||
struct in_place_type_t { explicit in_place_type_t() = default; }; | ||
|
||
#ifdef MPARK_VARIABLE_TEMPLATES | ||
constexpr in_place_t in_place{}; | ||
|
||
template <std::size_t I> constexpr in_place_index_t<I> in_place_index{}; | ||
|
||
template <typename T> constexpr in_place_type_t<T> in_place_type{}; | ||
#endif | ||
|
||
} // namespace mpark | ||
|
||
#endif // MPARK_IN_PLACE_HPP |
Oops, something went wrong.