aboutsummaryrefslogtreecommitdiff
path: root/ports/sleepy-discord/vcpkg.json
blob: 1fc2355beb9b8b893025823338004c4605862ef0 (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
{
  "name": "sleepy-discord",
  "version-date": "2021-07-07",
  "port-version": 1,
  "description": "C++ library for the Discord chat client",
  "homepage": "https://yourwaifu.dev/sleepy-discord/",
  "dependencies": [
    "boost-asio",
    {
      "name": "vcpkg-cmake",
      "host": true
    },
    {
      "name": "vcpkg-cmake-config",
      "host": true
    }
  ],
  "default-features": [
    "cpr",
    "websocketpp"
  ],
  "features": {
    "compression": {
      "description": "Allow compression for Websockets connection",
      "dependencies": [
        "zlib"
      ]
    },
    "cpr": {
      "description": "Use CPR library for handling HTTPS",
      "dependencies": [
        "cpr"
      ]
    },
    "voice": {
      "description": "Voice Chat support",
      "dependencies": [
        "libsodium",
        "opus"
      ]
    },
    "websocketpp": {
      "description": "Use Websocketpp for handling WebSockets",
      "dependencies": [
        "boost-random",
        "websocketpp"
      ]
    }
  }
}