-
-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy pathrnote.code-workspace
163 lines (163 loc) · 4.8 KB
/
rnote.code-workspace
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
{
"folders": [
{
"path": "."
}
],
"launch": {
"compounds": [],
"configurations": [
{
"args": [],
"env": {
//"G_MESSAGES_DEBUG": "all",
"LANG": "C",
"RUST_BACKTRACE": "1",
"RUST_LOG": "rnote=debug,rnote-cli=debug,rnote-engine=debug,rnote-compose=debug"
},
"name": "debug ui",
"preLaunchTask": "build",
"program": "${workspaceFolder}/_mesonbuild/rnote",
"request": "launch",
"type": "lldb"
},
],
"version": "0.2.0"
},
"settings": {
"C_Cpp.default.compileCommands": "/mnt/Daten/source/rnote/_mesonbuild/compile_commands.json",
"C_Cpp.default.configurationProvider": "mesonbuild.mesonbuild",
"files.watcherExclude": {
"_flatpak_app/**": true,
"_flatpak_repo/**": true,
"_mesonbuild/**": true,
".flatpak-builder/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true
},
"mesonbuild.buildFolder": "_mesonbuild",
"mesonbuild.configureOnOpen": false
},
"tasks": {
"tasks": [
{
"command": "just prerequisites-dev",
"label": "prerequisites",
"type": "shell"
},
{
"command": "just setup-dev",
"label": "setup",
"type": "shell"
},
{
"command": "just clean",
"label": "clean",
"type": "shell"
},
{
"command": "just fmt-check",
"label": "fmt-check",
"type": "shell"
},
{
"command": "just fmt",
"label": "fmt",
"type": "shell"
},
{
"command": "just check",
"label": "check",
"type": "shell"
},
{
"command": "just lint",
"label": "lint",
"type": "shell"
},
{
"command": "just build",
"label": "build",
"type": "shell"
},
{
"command": "just build-flatpak",
"label": "build flatpak",
"type": "shell"
},
{
"command": "just build-flatpak-bundle",
"label": "build flatpak bundle",
"type": "shell"
},
{
"command": "just build-win-installer",
"label": "build win installer",
"type": "shell"
},
{
"command": "just install",
"label": "install",
"type": "shell"
},
{
"command": "just install-flatpak",
"label": "install flatpak",
"type": "shell"
},
{
"command": "just run-ui",
"dependsOn": "build",
"label": "run ui",
"type": "shell"
},
{
"command": "just run-cli",
"dependsOn": "build",
"label": "run cli",
"type": "shell"
},
{
"command": "just run-flatpak",
"label": "run flatpak",
"type": "shell"
},
{
"command": "just test",
"label": "test",
"type": "shell"
},
{
"command": "just test-file-compatibility",
"label": "test file compatibility",
"type": "shell"
},
{
"command": "just generate-docs",
"label": "generate docs",
"type": "shell"
},
{
"command": "just check-outdated-dependencies",
"label": "check outdated dependencies",
"type": "shell"
},
{
"command": "just update-translations",
"label": "update translations",
"type": "shell"
},
{
"command": "just create-tarball",
"label": "create tarball",
"type": "shell"
},
{
"command": "just generate-json-flatpak-manifest",
"label": "generate json flatpak manifest",
"type": "shell"
},
],
"version": "2.0.0"
}
}