diff options
| author | tamaroth <tamaroth@users.noreply.github.com> | 2018-04-26 03:27:26 +0200 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-04-25 18:27:26 -0700 |
| commit | 1d351e0846475f097b6fbea0c52eb60c590f2b08 (patch) | |
| tree | 50edd5b0847bc82d3ca0bfba8059b3fb772acce1 | |
| parent | cc1a0af1b52c9dae97a2ae40ca08ee44491031a0 (diff) | |
| download | vcpkg-1d351e0846475f097b6fbea0c52eb60c590f2b08.tar.gz vcpkg-1d351e0846475f097b6fbea0c52eb60c590f2b08.zip | |
[bigint] Add missing header file #3319 (#3320)
* [bigint] Add missing header file.
File BigIntegerUtils.hh, which is required by the library, was not being copied.
* [bigint] Bump control file version
| -rw-r--r-- | ports/bigint/CMakeLists.txt | 3 | ||||
| -rw-r--r-- | ports/bigint/CONTROL | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/ports/bigint/CMakeLists.txt b/ports/bigint/CMakeLists.txt index cb62597ef..e4cccbe12 100644 --- a/ports/bigint/CMakeLists.txt +++ b/ports/bigint/CMakeLists.txt @@ -13,7 +13,7 @@ set( BigInteger.cc BigIntegerAlgorithms.cc BigUnsignedInABase.cc - BigIntegerUtils.cc + BigIntegerUtils.cc ) set( @@ -24,6 +24,7 @@ set( BigIntegerAlgorithms.hh BigUnsignedInABase.hh BigIntegerLibrary.hh + BigIntegerUtils.hh ) add_library(bigint ${bigint_srcs}) diff --git a/ports/bigint/CONTROL b/ports/bigint/CONTROL index 4079363f1..5247cbf81 100644 --- a/ports/bigint/CONTROL +++ b/ports/bigint/CONTROL @@ -1,3 +1,3 @@ Source: bigint -Version: 2010.04.30-1 +Version: 2010.04.30-2 Description: C++ Big Integer Library |
