aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/dlib/vcpkg.json
blob: d34870811426d13a64e73d69c9e1d5920f7a4fe6 (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
{
  "name": "dlib",
  "version": "20.0",
  "port-version": 3,
  "description": "Modern C++ toolkit containing machine learning algorithms and tools for creating complex software in C++",
  "homepage": "https://github.com/davisking/dlib",
  "license": "BSL-1.0",
  "supports": "!uwp",
  "dependencies": [
    "blas",
    "lapack",
    "libjpeg-turbo",
    "libpng",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "fftw3",
    "sqlite3"
  ],
  "features": {
    "cuda": {
      "description": "CUDA support for dlib",
      "dependencies": [
        "cuda",
        "cudnn"
      ]
    },
    "fftw3": {
      "description": "fftw3 support for dlib",
      "dependencies": [
        "fftw3"
      ]
    },
    "sqlite3": {
      "description": "sqlite3 support for dlib",
      "dependencies": [
        "sqlite3"
      ]
    }
  }
}