Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
brucedjones committed Mar 5, 2018
2 parents c2518b9 + a477fd6 commit 4a5b7cf
Show file tree
Hide file tree
Showing 462 changed files with 8,901 additions and 6,391 deletions.
5 changes: 1 addition & 4 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
*.patch text eol=lf
*.vcxproj text eol=crlf
*.vcxproj.filters text eol=crlf
*.sln text eol=crlf
* -text
56 changes: 56 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,59 @@
vcpkg (0.0.105)
--------------
* Add ports:
- breakpad 2018-2-19
- cartographer 0.3.0-3
- chipmunk 7.0.2
- ebml 1.3.5-1
- intel-mkl 2018.0.1
- jbig2dec 0.13
- libgeotiff 1.4.2-2
- liblo 0.29-1
- libpng-apng 1.6.34-2
- magnum-extras 2018.02-1
- magnum-integration 2018.02-1
- matroska 1.4.8
- mman git-f5ff813
- qt5-graphicaleffects 5.9.2-0
- qt5-quickcontrols 5.9.2-0
- qt5-quickcontrols2 5.9.2-0
- recast 1.5.1
- tinydir 1.2.3
- tinytoml 20180219-1
* Update ports:
- aubio 0.4.6 -> 0.4.6-1
- aws-sdk-cpp 1.3.15 -> 1.3.58
- blaze 3.2-3 -> 3.3
- boost-build 1.66.0-4 -> 1.66.0-5
- boost-mpi 1.66.0 -> 1.66.0-1
- catch2 2.1.1 -> 2.1.2
- ceres 1.13.0-2 -> 1.13.0-4
- corrade jan2018-1 -> 2018.02-1
- cuda 8.0-1 -> 9.0
- draco 0.10.0-1 -> 1.2.5
- ffmpeg 3.3.3-1 -> 3.3.3-2
- folly 2017.11.27.00-2 -> 2017.11.27.00-3
- hpx 1.0.0-7 -> 1.0.0-8
- jansson 2.10-1 -> 2.11
- libdisasm 0.23 -> 0.23-1
- libmupdf 1.11-1 -> 1.12.0
- magnum jan2018-1 -> 2018.02-1
- magnum-plugins jan2018-1 -> 2018.02-1
- opencv 3.4.0-2 -> 3.4.0-3
- openvr 1.0.12 -> 1.0.13
- pcre2 10.30-1 -> 10.30-2
- qt5-base 5.9.2-4 -> 5.9.2-5
- realsense2 2.9.1 -> 2.10.0
- sciter 4.1.2 -> 4.1.3
- suitesparse 4.5.5-3 -> 4.5.5-4
- szip 2.1.1 -> 2.1.1-1
- uriparser 0.8.4-1 -> 0.8.5
* Better handling of `feature packages`.
* Bump required version & auto-downloaded version of `git` to 2.6.2

-- vcpkg team <[email protected]> TUE, 20 Feb 2018 18:30:00 -0800


vcpkg (0.0.104)
--------------
* Add ports:
Expand Down
20 changes: 6 additions & 14 deletions docs/maintainers/vcpkg_acquire_msys.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,18 @@ Download and prepare an MSYS2 instance.

## Usage
```cmake
vcpkg_acquire_msys(<MSYS_ROOT_VAR>)
vcpkg_acquire_msys(<MSYS_ROOT_VAR> [PACKAGES <package>...])
```

## Parameters
### MSYS_ROOT_VAR
An out-variable that will be set to the path to MSYS2.

### PACKAGES
A list of packages to acquire in msys.

To ensure a package is available: `vcpkg_acquire_msys(MSYS_ROOT PACKAGES make automake1.15)`

## Notes
A call to `vcpkg_acquire_msys` will usually be followed by a call to `bash.exe`:
```cmake
Expand All @@ -23,19 +28,6 @@ vcpkg_execute_required_process(
LOGNAME build-${TARGET_TRIPLET}-rel
)
```
To ensure a package is available:
```cmake
vcpkg_acquire_msys(MSYS_ROOT)
set(BASH ${MSYS_ROOT}/usr/bin/bash.exe)
message(STATUS "Installing MSYS Packages")
vcpkg_execute_required_process(
COMMAND
${BASH} --noprofile --norc -c
'PATH=/usr/bin:\$PATH pacman -Sy --noconfirm --needed make'
WORKING_DIRECTORY ${MSYS_ROOT}
LOGNAME pacman-${TARGET_TRIPLET})
```

## Examples

Expand Down
5 changes: 5 additions & 0 deletions docs/maintainers/vcpkg_configure_cmake.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ Specifies the directory containing the `CMakeLists.txt`. By convention, this is
### PREFER_NINJA
Indicates that, when available, Vcpkg should use Ninja to perform the build. This should be specified unless the port is known to not work under Ninja.

### DISABLE_PARALLEL_CONFIGURE
Disables running the CMake configure step in parallel.

This is needed for libraries which write back into their source directory during configure.

### GENERATOR
Specifies the precise generator to use.

Expand Down
4 changes: 2 additions & 2 deletions docs/users/triplets.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ Example:
```cmake
set(VCPKG_LIBRARY_LINKAGE static)
set(VCPKG_CRT_LINKAGE dynamic)
if(PORT STREQUAL "qt5")
if(PORT MATCHES "qt5-")
set(VCPKG_LIBRARY_LINKAGE dynamic)
endif()
```
This will build `qt5` as DLLs against the dynamic CRT, but every other library as a static library (still against the dynamic CRT).
This will build all the `qt5-*` libraries as DLLs against the dynamic CRT, but every other library as a static library (still against the dynamic CRT).

For an example in a real project, see https://github.com/Intelight/vcpkg/blob/master/triplets/x86-windows-mixed.cmake.

Expand Down
2 changes: 1 addition & 1 deletion ports/abseil/CONTROL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Source: abseil
Version: 2018-2-5
Version: 2018-03-02
Description: an open-source collection designed to augment the C++ standard library.
Abseil is an open-source collection of C++ library code designed to augment the C++ standard library. The Abseil library code is collected from Google's own C++ code base, has been extensively tested and used in production, and is the same code we depend on in our daily coding lives.
In some cases, Abseil provides pieces missing from the C++ standard; in others, Abseil provides alternatives to the standard for special needs we've found through usage in the Google code base. We denote those cases clearly within the library code we provide you.
Expand Down
4 changes: 2 additions & 2 deletions ports/abseil/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ endif()
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO abseil/abseil-cpp
REF bf7fc9986e20f664958fc227547fd8d2fdcf863e
SHA512 c80a1f850d40e2470db50dd0904730e615378fd1530e1bfef0908ec7ef7bf06ff7e1c6bbb1fe9aeb71e0f2df3fc2b7c516261d0521ff2822fd7f962a287b5718
REF 5337d2d0e312ce6bce0140b5f1da5548a0b3fed5
SHA512 14b2680c39260c5dc6a4b06583f7581ebfe11cde5c2e93cbca72385b1ba0c216894a3e88aa47ad84cc45af1c237b58e2b6240c35e1c0a73246a06ad472573558
HEAD_REF master
)

Expand Down
2 changes: 1 addition & 1 deletion ports/args/CONTROL
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Source: args
Version: d8905de
Version: 2018-02-23
Description: A simple header-only C++ argument parser library.
18 changes: 10 additions & 8 deletions ports/args/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
#header-only library
include(vcpkg_common_functions)
SET(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src/args-master)
vcpkg_download_distfile(ARCHIVE
URLS "https://github.com/Taywee/args/archive/master.zip"
FILENAME "args.zip"
SHA512 81751bfc86e15db1e5f245baa7df0464027b22b577c9de359e22dc4fe1dd550acfb116801b47d88b56d61b69a640c55757206f6f84977ace2fb02742b60ff216

vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Taywee/args
REF 7bf17000aa0969b8ca3178c72ec834b105944a41
SHA512 38f038f2ea3cdbf62678112a28f6b9a2b46b7b291ec9a7c78393c28b1169dc393a086393f24534804188d434583896d9eaedca964c00a2db032fb337ebc9c214
HEAD_REF master
)
vcpkg_extract_source_archive(${ARCHIVE})

# Put the licence file where vcpkg expects it
file(COPY ${SOURCE_PATH}/license DESTINATION ${CURRENT_PACKAGES_DIR}/share/args)
file(RENAME ${CURRENT_PACKAGES_DIR}/share/args/license ${CURRENT_PACKAGES_DIR}/share/args/copyright)

# Copy the args header files
file(INSTALL ${SOURCE_PATH} DESTINATION ${CURRENT_PACKAGES_DIR}/include FILES_MATCHING PATTERN "*.hxx")
file(INSTALL ${SOURCE_PATH}/ DESTINATION ${CURRENT_PACKAGES_DIR}/include FILES_MATCHING PATTERN "*.hxx")

file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/examples ${CURRENT_PACKAGES_DIR}/include/test)

file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/args-master/examples ${CURRENT_PACKAGES_DIR}/include/args-master/test)
vcpkg_copy_pdbs()
31 changes: 18 additions & 13 deletions ports/atk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,26 @@ endif()

# generate atkmarshal.c and atkmarshal.h source files
# glib-genmarshal should be installed along with glib
if(NOT EXISTS ${CMAKE_SOURCE_DIR}/atk/atkmarshal.h OR NOT EXISTS ${CMAKE_SOURCE_DIR}/atk/atkmarshal.c)
find_program(GLIB_GENMARSHAL glib-genmarshal PATH_SUFFIXES glib)
execute_process(
COMMAND ${GLIB_GENMARSHAL} --prefix=atk_marshal atkmarshal.list --header
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/atk
OUTPUT_FILE ${CMAKE_SOURCE_DIR}/atk/atkmarshal.h)
execute_process(
COMMAND ${GLIB_GENMARSHAL} --prefix=atk_marshal atkmarshal.list --body
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/atk
OUTPUT_FILE ${CMAKE_SOURCE_DIR}/atk/atkmarshal.c)
endif()
find_program(GLIB_GENMARSHAL glib-genmarshal PATH_SUFFIXES glib)
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/atk)

message("Generating atkmarshal.h: ${GLIB_GENMARSHAL} --prefix=atk_marshal ${CMAKE_CURRENT_SOURCE_DIR}/atk/atkmarshal.list --header")
execute_process(
COMMAND ${GLIB_GENMARSHAL} --prefix=atk_marshal ${CMAKE_CURRENT_SOURCE_DIR}/atk/atkmarshal.list --header
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/atk
OUTPUT_FILE ${CMAKE_CURRENT_BINARY_DIR}/atk/atkmarshal.h
)

message("Generating atkmarshal.c: ${GLIB_GENMARSHAL} --prefix=atk_marshal ${CMAKE_CURRENT_SOURCE_DIR}/atk/atkmarshal.list --body")
execute_process(
COMMAND ${GLIB_GENMARSHAL} --prefix=atk_marshal ${CMAKE_CURRENT_SOURCE_DIR}/atk/atkmarshal.list --body
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/atk
OUTPUT_FILE ${CMAKE_CURRENT_BINARY_DIR}/atk/atkmarshal.c
)

configure_file(config.h.win32 ${CMAKE_SOURCE_DIR}/config.h COPYONLY)
configure_file(config.h.win32 ${CMAKE_CURRENT_BINARY_DIR}/config.h COPYONLY)
add_definitions(-DHAVE_CONFIG_H)
include_directories(. ./atk)
include_directories(. ./atk ${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR}/atk)

find_path(GLIB_INCLUDE_DIR glib.h)
find_library(GLIB_GLIB_LIBRARY glib-${GLIB_LIB_VERSION})
Expand Down
2 changes: 1 addition & 1 deletion ports/atk/CONTROL
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Source: atk
Version: 2.24.0-1
Version: 2.24.0-2
Description: GNOME Accessibility Toolkit
Build-Depends: glib, gettext
5 changes: 2 additions & 3 deletions ports/atk/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# ATK uses DllMain
if (VCPKG_LIBRARY_LINKAGE STREQUAL static)
message(STATUS "Warning: Static building not supported. Building dynamic.")
set(VCPKG_LIBRARY_LINKAGE dynamic)
if (VCPKG_LIBRARY_LINKAGE STREQUAL "static" OR VCPKG_CRT_LINKAGE STREQUAL "static")
message(FATAL_ERROR "ATK only supports dynamic library and crt linkage")
endif()

include(vcpkg_common_functions)
Expand Down
7 changes: 6 additions & 1 deletion ports/aubio/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ find_library(OGG_LIB ogg)
find_library(FLAC_LIB flac)
find_library(VORBIS_LIB vorbis)
find_library(VORBISENC_LIB vorbisenc)
find_package(BZip2 REQUIRED)
find_package(LibLZMA REQUIRED)

include_directories(src ${LIBSNDFILE_H})
include_directories(src ${LIBSNDFILE_H} ${LIBLZMA_INCLUDE_DIRS})

file(GLOB_RECURSE SOURCES src/*.c)

Expand All @@ -56,7 +58,10 @@ target_link_libraries(aubio PUBLIC
${AVFILTER_LIB}
${AVFORMAT_LIB}
${SWRESAMPLE_LIB}
BZip2::BZip2
${LIBLZMA_LIBRARIES}
ws2_32.lib
Secur32.lib
)

if(BUILD_TOOLS)
Expand Down
2 changes: 1 addition & 1 deletion ports/aubio/CONTROL
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Source: aubio
Version: 0.4.6
Version: 0.4.6-1
Description: Aubio is a tool designed for the extraction of annotations from audio signals. Its features include segmenting a sound file before each of its attacks, performing pitch detection, tapping the beat and producing midi streams from live audio.
Build-Depends: ffmpeg, libsndfile, libogg, libflac, libvorbis
2 changes: 1 addition & 1 deletion ports/aws-sdk-cpp/CONTROL
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Source: aws-sdk-cpp
Version: 1.3.15
Version: 1.3.58
Description: AWS SDK for C++
4 changes: 2 additions & 2 deletions ports/aws-sdk-cpp/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ include(vcpkg_common_functions)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO aws/aws-sdk-cpp
REF 1.3.15
SHA512 844addabf01bdbba2c50f94303f23fd092ac5593c42c782aad5959d5edaadb0bec8a6408a91f4605cef996f0d5a23fd94ca3c194829c65db98291d5fa7150bff
REF 1.3.58
SHA512 755fe3fd9d507a43fb03c1530a979f5a5a2848588ccab39509987043b3d274f27a7b163bf078a006123450ee881fd4a092cd703246f6f669810f47c186c2b0b8
HEAD_REF master
)

Expand Down
2 changes: 1 addition & 1 deletion ports/azure-storage-cpp/CONTROL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Source: azure-storage-cpp
Version: 3.0.0-4
Version: 3.1.0
Build-Depends: cpprestsdk, atlmfc
Description: Microsoft Azure Storage Client SDK for C++
A client library for working with Microsoft Azure storage services including blobs, files, tables, and queues. This client library enables working with the Microsoft Azure storage services which include the blob service for storing binary and text data, the file service for storing binary and text data, the table service for storing structured non-relational data, and the queue service for storing messages that may be accessed by a client. Microsoft Azure Storage team's blog - http://blogs.msdn.com/b/windowsazurestorage/
4 changes: 2 additions & 2 deletions ports/azure-storage-cpp/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ include(vcpkg_common_functions)
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO Azure/azure-storage-cpp
REF v3.0.0
SHA512 45d0d7f8cc350a16cff0371cdd442e851912c89061acfec559482e8f79cebafffd8681b32a30b878e329235cd3aaad5d2ff797d1148302e3109cf5111df14b97
REF v3.1.0
SHA512 ebd6f8aab33046942d641bd42b126dae94c49c08963b96b0141cd6827cb865c95f05f4c7a4df9ce8c62b4ec39092c0538a8c274a0a7219c74656ad111b15bfb8
HEAD_REF master
)

Expand Down
2 changes: 1 addition & 1 deletion ports/blaze/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ vcpkg_from_bitbucket(
OUT_SOURCE_PATH SOURCE_PATH
REPO blaze-lib/blaze
REF v3.3
SHA512 391be695114759c9eef56dbb20d039a20f88bc9b852285e950788ce5118dcf69f29c5497b62f5b18b6f777760b0bc17534d71eda40628046acfc861c7f7c2356
SHA512 1210db57fca04832ff9382cbb904f22f70eab3acbc355a1d22435bfe042d6acac7f86a908d8654cf49517c2ad825cd8be19f85b20b1ebd46a79d474a424653c8
HEAD_REF master
)

Expand Down
2 changes: 1 addition & 1 deletion ports/boost-build/CONTROL
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Source: boost-build
Version: 1.66.0-4
Version: 1.66.0-5
Description: Boost.Build
9 changes: 9 additions & 0 deletions ports/boost-build/Jamroot.jam
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,15 @@ if "@PORT@" != "boost-test"
explicit boost_unit_test_framework ;
}

if "@PORT@" != "boost-serialization"
{
use-project /boost/serialization : . ;

lib boost_serialization : : <file>@CURRENT_INSTALLED_DIR@/lib/boost_serialization-vc140-mt.lib <variant>release ;
lib boost_serialization : : <file>@CURRENT_INSTALLED_DIR@/debug/lib/boost_serialization-vc140-mt-gd.lib <variant>debug ;
explicit boost_serialization ;
}

rule requires ( foo * )
{
}
Expand Down
2 changes: 1 addition & 1 deletion ports/boost-build/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ vcpkg_from_github(
)

vcpkg_download_distfile(ARCHIVE
URLS "https://raw.githubusercontent.com/boostorg/boost/boost-1.65.1/LICENSE_1_0.txt"
URLS "https://raw.githubusercontent.com/boostorg/boost/boost-1.66.0/LICENSE_1_0.txt"
FILENAME "boost_LICENSE_1_0.txt"
SHA512 d6078467835dba8932314c1c1e945569a64b065474d7aced27c9a7acc391d52e9f234138ed9f1aa9cd576f25f12f557e0b733c14891d42c16ecdc4a7bd4d60b8
)
Expand Down
8 changes: 8 additions & 0 deletions ports/boost-build/user-config.jam
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ if "@PORT@" = "boost-python"
using python : @PYTHON_VERSION@ : : "@PYTHON_INCLUDE_PATH@" : "@PYTHONLIBS_DEBUG@" : <python-debugging>on ;
}

if "@PORT@" = "boost-mpi"
{
using mpi : :
<library-path>@CURRENT_INSTALLED_DIR@/lib
<include>@CURRENT_INSTALLED_DIR@/include
<find-shared-library>msmpi ;
}

project user-config : ;

lib advapi32 ;
Expand Down
2 changes: 1 addition & 1 deletion ports/boost-graph-parallel/CONTROL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Automatically generated by boost-vcpkg-helpers/generate-ports.ps1
Source: boost-graph-parallel
Version: 1.66.0
Build-Depends: boost-assert, boost-build, boost-compatibility, boost-config, boost-detail, boost-dynamic-bitset, boost-function, boost-functional, boost-graph, boost-iterator, boost-lexical-cast, boost-math, boost-mpi, boost-mpl, boost-optional, boost-property-map, boost-random, boost-serialization, boost-smart-ptr, boost-static-assert, boost-tuple, boost-type-traits, boost-utility, boost-variant, boost-vcpkg-helpers
Build-Depends: boost-assert, boost-build, boost-compatibility, boost-config, boost-detail, boost-dynamic-bitset, boost-function, boost-functional, boost-graph, boost-iterator, boost-lexical-cast, boost-math, boost-mpl, boost-optional, boost-property-map, boost-random, boost-serialization, boost-smart-ptr, boost-static-assert, boost-tuple, boost-type-traits, boost-utility, boost-variant, boost-vcpkg-helpers
Description: Boost graph_parallel module
4 changes: 2 additions & 2 deletions ports/boost-mpi/CONTROL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Automatically generated by boost-vcpkg-helpers/generate-ports.ps1
Source: boost-mpi
Version: 1.66.0
Build-Depends: boost-assert, boost-build, boost-compatibility, boost-config, boost-core, boost-function, boost-graph, boost-integer, boost-iterator, boost-lexical-cast, boost-math, boost-mpl, boost-optional, boost-property-map, boost-python (windows), boost-serialization, boost-smart-ptr, boost-static-assert, boost-throw-exception, boost-type-traits, boost-utility, boost-vcpkg-helpers
Version: 1.66.0-1
Build-Depends: boost-assert, boost-build, boost-compatibility, boost-config, boost-core, boost-function, boost-graph, boost-integer, boost-iterator, boost-lexical-cast, boost-math, boost-mpl, boost-optional, boost-property-map, boost-python (windows), boost-serialization, boost-smart-ptr, boost-static-assert, boost-throw-exception, boost-type-traits, boost-utility, boost-vcpkg-helpers, msmpi
Description: Boost mpi module
2 changes: 1 addition & 1 deletion ports/boost-odeint/CONTROL
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Automatically generated by boost-vcpkg-helpers/generate-ports.ps1
Source: boost-odeint
Version: 1.66.0
Build-Depends: boost-array, boost-assert, boost-bind, boost-compute, boost-config, boost-core, boost-function, boost-fusion, boost-iterator, boost-math, boost-mpi, boost-mpl, boost-multi-array, boost-preprocessor, boost-range, boost-static-assert, boost-throw-exception, boost-type-traits, boost-units, boost-utility, boost-vcpkg-helpers
Build-Depends: boost-array, boost-assert, boost-bind, boost-compute, boost-config, boost-core, boost-function, boost-fusion, boost-iterator, boost-math, boost-mpl, boost-multi-array, boost-preprocessor, boost-range, boost-static-assert, boost-throw-exception, boost-type-traits, boost-units, boost-utility, boost-vcpkg-helpers
Description: Boost odeint module
Loading

0 comments on commit 4a5b7cf

Please sign in to comment.