diff options
Diffstat (limited to 'vcpkg/ports/glpk/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/glpk/vcpkg.json | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/vcpkg/ports/glpk/vcpkg.json b/vcpkg/ports/glpk/vcpkg.json new file mode 100644 index 0000000..58e820d --- /dev/null +++ b/vcpkg/ports/glpk/vcpkg.json @@ -0,0 +1,58 @@ +{ + "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", + "name": "glpk", + "version": "5.0", + "port-version": 3, + "maintainers": "Fabio A. Correa Duran", + "description": [ + "The GNU Linear Programming Kit (GLPK) solves large-scale linear programming (LP), mixed integer programming (MIP), and related problems.", + "GLPK includes the following main components:", + "Primal and dual simplex methods", + "Primal-dual interior-point method", + "Branch-and-cut method", + "Translator for GNU MathProg", + "Application program interface (API)", + "Stand-alone LP/MIP solver " + ], + "homepage": "https://www.gnu.org/software/glpk/", + "documentation": "https://www.gnu.org/software/glpk/#documentation", + "license": "GPL-3.0-or-later", + "supports": "!xbox", + "features": { + "dl": { + "description": "Enable shared library support", + "dependencies": [ + "dlfcn-win32" + ] + }, + "gmp": { + "description": "Use the GNU Multiple Precision Arithmetic Library", + "dependencies": [ + "gmp" + ] + }, + "mysql": { + "description": "Sharing between MathProg objects and MySQL databases (libmysql)", + "dependencies": [ + { + "name": "glpk", + "features": [ + "dl" + ] + }, + "libmysql" + ] + }, + "odbc": { + "description": "Sharing between MathProg objects and databases through ODBC (libiodbc)", + "dependencies": [ + { + "name": "glpk", + "features": [ + "dl" + ] + } + ] + } + } +} |