Skip to content

Commit b657fbe

Browse files
authored
Merge pull request #5 from mathworks/fixes_Pablo
Minor fixes.
2 parents 8360077 + 0da312e commit b657fbe

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
[![View vcpkg Wrapper for MATLAB on File Exchange](https://www.mathworks.com/matlabcentral/images/matlab-file-exchange.svg)](https://www.mathworks.com/matlabcentral/fileexchange/182780-vcpkg-wrapper-for-matlab)
44

55
This simple toolbox wraps [vcpkg - Open source C/C++ dependency manager from Microsoft®](https://vcpkg.io/en/index.html) to ease the integration into MATLAB projects that use vcpkg [manifest mode](https://learn.microsoft.com/en-us/vcpkg/concepts/manifest-mode) to define its dependencies.
6-
The wrapper toolbox figures out the host and target triplets as well as the compiler paths automatically. You can also pass an explicit target triplet when automatic detection is not the desired behavior. It only requires vcpkg to be available on the system's path.
6+
The wrapper toolbox figures out the host and target triplets as well as the compiler paths automatically. It only requires vcpkg to be available on the system's path.
77

88
## Setup
99
Download toolbox installer from releases in GitHub or File Exchange and install in MATLAB.
1010

1111
### MathWorks Products (https://www.mathworks.com)
12-
Requires MATLAB release R2019b or newer
12+
Requires MATLAB release R2020b or newer
1313
- [MATLAB®](https://www.mathworks.com/products/matlab.html)
1414

1515
### 3rd Party Products

utils/packageToolbox.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
toolboxOptions.ToolboxGettingStartedGuide = "toolbox/gettingStarted.mlx";
1818
toolboxOptions.OutputFile = sprintf("vcpkg-wrapper-toolbox-v%s.mltbx", toolboxVersion.string);
1919

20-
toolboxOptions.MinimumMatlabRelease = "R2019b";
20+
toolboxOptions.MinimumMatlabRelease = "R2020b";
2121
% toolboxOptions.MaximumMatlabRelease = "R2023a"; % Won't limit maximum MATLAB release
2222
toolboxOptions.SupportedPlatforms.Glnxa64 = true;
2323
toolboxOptions.SupportedPlatforms.Maci64 = true;

0 commit comments

Comments
 (0)