aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/llfio/vcpkg.json
blob: d9320f79765fcd25138f6589b6434c3d1c413070 (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
{
  "name": "llfio",
  "version-date": "2025-01-13",
  "maintainers": [
    "Niall Douglas <s_github@nedprod.com>",
    "Henrik Gaßmann <henrik@gassmann.onl>"
  ],
  "description": "P1031 low level file i/o and filesystem library for the C++ standard",
  "homepage": "https://github.com/ned14/llfio",
  "license": "Apache-2.0 OR BSL-1.0",
  "supports": "!uwp",
  "dependencies": [
    "outcome",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "features": {
    "polyfill-cxx17": {
      "description": "Polyfill C++17 entities",
      "dependencies": [
        {
          "name": "llfio",
          "default-features": false,
          "features": [
            "polyfill-cxx20"
          ]
        },
        {
          "name": "ned14-internal-quickcpplib",
          "default-features": false,
          "features": [
            "polyfill-cxx17"
          ]
        },
        {
          "name": "outcome",
          "default-features": false,
          "features": [
            "polyfill-cxx17"
          ]
        }
      ]
    },
    "polyfill-cxx20": {
      "description": "Polyfill C++20 entities",
      "dependencies": [
        {
          "name": "ned14-internal-quickcpplib",
          "default-features": false,
          "features": [
            "polyfill-cxx20"
          ]
        },
        {
          "name": "outcome",
          "default-features": false,
          "features": [
            "polyfill-cxx20"
          ]
        }
      ]
    },
    "run-tests": {
      "description": "Build and run the dependency validation tests"
    },
    "status-code": {
      "description": "Have LLFIO use SG14 `status_code` (proposed `std::error`) instead of `std::error_code`."
    }
  }
}