aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/libigl/vcpkg.json
blob: 57c599949c23990a073b3ab92758b578c681dedb (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
  "name": "libigl",
  "version": "2.6.0",
  "port-version": 1,
  "description": "libigl is a simple C++ geometry processing library. We have a wide functionality including construction of sparse discrete differential geometry operators and finite-elements matrices such as the cotangent Laplacian and diagonalized mass matrix, simple facet and edge-based topology data structures, mesh-viewing utilities for OpenGL and GLSL, and many core functions for matrix manipulation which make Eigen feel a lot more like MATLAB.",
  "homepage": "https://github.com/libigl/libigl",
  "license": "MPL-2.0",
  "supports": "!uwp",
  "dependencies": [
    "eigen3",
    "stb",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "features": {
    "cgal": {
      "description": "Build with cgal",
      "supports": "!(x86 & windows & !mingw)",
      "dependencies": [
        {
          "name": "cgal",
          "default-features": false
        },
        {
          "name": "libigl",
          "default-features": false,
          "features": [
            "copyleft"
          ]
        }
      ]
    },
    "copyleft": {
      "description": "Build copyleft core module",
      "license": "MPL-2.0 AND GPL-2.0"
    },
    "embree": {
      "description": "Build with embree",
      "dependencies": [
        {
          "name": "embree",
          "default-features": false
        }
      ]
    },
    "glfw": {
      "description": "Build with glfw",
      "dependencies": [
        "glfw3",
        {
          "name": "libigl",
          "default-features": false,
          "features": [
            "opengl"
          ]
        }
      ]
    },
    "imgui": {
      "description": "Build with imgui",
      "dependencies": [
        {
          "name": "imgui",
          "default-features": false,
          "features": [
            "glfw-binding",
            "libigl-imgui",
            "opengl3-binding"
          ]
        },
        "imguizmo",
        {
          "name": "libigl",
          "default-features": false,
          "features": [
            "glfw"
          ]
        }
      ]
    },
    "opengl": {
      "description": "Build with opengl",
      "dependencies": [
        "glad",
        "opengl"
      ]
    },
    "xml": {
      "description": "Build with libxml",
      "dependencies": [
        "tinyxml2"
      ]
    }
  }
}