aboutsummaryrefslogtreecommitdiff
path: root/ports/libigl/vcpkg.json
blob: 22f523168347ec183c3791ddd77c000c703c16a2 (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
{
  "name": "libigl",
  "version": "2.3.0",
  "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",
  "supports": "!(arm | uwp)",
  "dependencies": [
    "eigen3",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "features": {
    "embree": {
      "description": "Build with embree",
      "dependencies": [
        "embree3"
      ]
    },
    "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"
      ]
    }
  }
}