aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/glpk/vcpkg.json
blob: 58e820d435eb21480a3599ac6876a18b04e1efb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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"
          ]
        }
      ]
    }
  }
}