-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchalet.json
More file actions
47 lines (47 loc) · 856 Bytes
/
chalet.json
File metadata and controls
47 lines (47 loc) · 856 Bytes
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
{
"name": "modules-project",
"version": "1.0.0",
"defaultConfigurations": [
"Release",
"Debug",
"MinSizeRel",
"RelWithDebInfo",
"RelHighOpt",
"Profile"
],
"abstracts:*": {
"language": "C++",
"settings:Cxx": {
"staticRuntimeLibrary[:windows]": true,
"cppStandard": "c++20",
"warningsPreset": "pedantic",
"includeDirs": "include"
}
},
"targets": {
"library-s": {
"kind": "staticLibrary",
"settings:Cxx": {
"includeDirs": "src/library"
},
"files": "src/library/**.cpp"
},
"modules-project": {
"kind": "executable",
"settings:Cxx": {
"cppModules": true,
"includeDirs": "src/modules",
"staticLinks": "library-s"
},
"files": "src/modules/**.{cc,ixx}"
}
},
"distribution": {
"modules-project": {
"kind": "bundle",
"buildTargets": [
"modules-project"
]
}
}
}