blob: 2b1aefb333689e5e8234cd3385891224efcfc401 (
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
|
{
"name": "smf",
"version": "0.2.3",
"description": "State machine framework",
"homepage": "https://github.com/vpetrigo/smf",
"license": "Apache-2.0",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"hierarchical": {
"description": "Enable hierarchical state machine support"
},
"init-transition": {
"description": "Enable state machine initial transition feature",
"dependencies": [
{
"name": "smf",
"features": [
"hierarchical"
]
}
]
}
}
}
|