-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchalet.json
More file actions
78 lines (78 loc) · 1.62 KB
/
chalet.json
File metadata and controls
78 lines (78 loc) · 1.62 KB
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
77
78
{
"name": "Chalet Example - Metadata",
"version": "4.0.1",
"author": "Doe & Co.",
"description": "Workspace with metadata examples",
"license": "LICENSE",
"readme": "README.md",
"homepage": "www.biz.town",
"abstracts:*": {
"language": "C++",
"metadata": {
"version": "2.0.1.984",
"license": "other_LICENSE.txt",
"readme": "other_README.md",
"homepage": "products.biz.town"
},
"settings:Cxx": {
"cppStandard": "c++20",
"warningsPreset": "pedantic",
"precompiledHeader": "src/pch.hpp",
"includeDirs": "src",
"defines[:debug]": [
"_DEBUG"
]
},
"files": "src/**.cpp",
"configureFiles": "src/config.h.in"
},
"targets": {
"project-a": {
"kind": "executable"
},
"project-b": {
"kind": "executable",
"metadata": {
"name": "Project B",
"author": "John Doe",
"description": "The first project"
}
},
"project-c": {
"kind": "executable",
"metadata": {
"name": "Project C",
"author": "Jane Doe",
"description": "The second project"
}
},
"project-d": {
"kind": "executable",
"metadata": {
"name": "${meta:workspaceName}",
"author": "${meta:workspaceAuthor}",
"description": "${meta:workspaceDescription}",
"version": "${meta:workspaceVersion}",
"license": "${meta:workspaceLicense}",
"readme": "${meta:workspaceReadme}",
"homepage": "${meta:workspaceHomepage}"
}
},
"project-e": {
"kind": "executable",
"metadata": "workspace"
}
},
"distribution": {
"all": {
"kind": "bundle",
"buildTargets": [
"project-a",
"project-b",
"project-c",
"project-d",
"project-e"
]
}
}
}