@micro-os-plus/micro-test-plus 3.1.0 → 3.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,24 +1,19 @@
1
1
  {
2
2
  "name": "@micro-os-plus/micro-test-plus",
3
- "version": "3.1.0",
4
- "description": "A source library xPack with µTest++, a lightweight testing framework for embedded platforms",
3
+ "version": "3.1.2",
4
+ "description": "A source code library with µTest++, a lightweight testing framework for embedded platforms",
5
5
  "main": "",
6
6
  "scripts": {
7
- "npm-install": "npm install",
8
- "pack": "npm pack",
9
- "version-patch": "npm version patch",
10
- "version-minor": "npm version minor",
11
- "postversion": "git push origin --all && git push origin --tags",
12
- "git-log": "git log --pretty='%cd * %h %s' --date=short"
7
+ "postversion": "git push origin --all && git push origin --tags"
13
8
  },
14
9
  "repository": {
15
10
  "type": "git",
16
- "url": "https://github.com/micro-os-plus/micro-test-plus-xpack.git/"
11
+ "url": "https://github.com/micro-os-plus/micro-test-plus-xpack.git"
17
12
  },
13
+ "homepage": "https://micro-os-plus.github.io/micro-test-plus-xpack",
18
14
  "bugs": {
19
- "url": "https://github.com/micro-os-plus/micro-test-plus-xpack/issues/"
15
+ "url": "https://github.com/micro-os-plus/micro-test-plus-xpack/issues"
20
16
  },
21
- "homepage": "https://github.com/micro-os-plus/micro-test-plus-xpack/",
22
17
  "keywords": [
23
18
  "xpack",
24
19
  "c++",
@@ -29,894 +24,32 @@
29
24
  "author": {
30
25
  "name": "Liviu Ionescu",
31
26
  "email": "ilg@livius.net",
32
- "url": "https://github.com/ilg-ul/"
27
+ "url": "https://github.com/ilg-ul"
33
28
  },
34
29
  "license": "MIT",
35
30
  "config": {},
31
+ "dependencies": {},
32
+ "bundleDependencies": [],
33
+ "$devDependenciesUrls": [
34
+ "https://www.npmjs.com/package/del-cli"
35
+ ],
36
36
  "devDependencies": {
37
- "@xpack-dev-tools/cmake": "3.21.6-1.1",
38
- "@xpack-dev-tools/meson-build": "0.60.3-1.1",
39
- "@xpack-dev-tools/ninja-build": "1.10.2-5.1",
40
- "@micro-os-plus/build-helper": "2.7.1",
41
- "@micro-os-plus/diag-trace": "3.0.0"
37
+ "del-cli": "^5.1.0"
42
38
  },
43
39
  "xpack": {
44
- "minimumXpmRequired": "0.11.0",
45
- "properties": {
46
- "buildFolderRelativePath": "{{ 'build' | path_join: configuration.name | to_filename | downcase }}",
47
- "buildFolderRelativePathPosix": "{{ 'build' | path_posix_join: configuration.name | downcase }}",
48
- "commandCMakePrepare": "{{ properties.commandCMakeReconfigure }} --log-level=VERBOSE",
49
- "commandCMakePrepareWithToolchain": "{{ properties.commandCMakePrepare }} -D CMAKE_TOOLCHAIN_FILE=../xpacks/micro-os-plus-build-helper/cmake/toolchains/{{ properties.toolchainFileName }}",
50
- "commandCMakeReconfigure": "cmake -S tests -B {{ properties.buildFolderRelativePathPosix }} -G Ninja -D CMAKE_BUILD_TYPE={{ properties.buildType }} -D PLATFORM_NAME={{ properties.platformName }} -D CMAKE_EXPORT_COMPILE_COMMANDS=ON",
51
- "commandCMakeBuild": "cmake --build {{ properties.buildFolderRelativePathPosix }}",
52
- "commandCMakeBuildVerbose": "cmake --build {{ properties.buildFolderRelativePathPosix }} --verbose",
53
- "commandCMakeClean": "cmake --build {{ properties.buildFolderRelativePathPosix }} --target clean",
54
- "commandCMakePerformTests": "cd {{ properties.buildFolderRelativePath }} && ctest -V",
55
- "commandMesonPrepare": "meson setup --backend ninja --buildtype {{ properties.buildType }} -D platform-name={{ properties.platformName }} {{ properties.buildFolderRelativePathPosix }} tests",
56
- "commandMesonPrepareWithToolchain": "meson setup --backend ninja --buildtype {{ properties.buildType }} -D platform-name={{ properties.platformName }} --native-file xpacks/micro-os-plus-build-helper/meson/toolchains/{{ properties.toolchainFileName }} --native-file tests/platform-{{ properties.platformName }}/meson/native.ini {{ properties.buildFolderRelativePathPosix }} tests",
57
- "commandMesonPrepareCross": "meson setup --backend ninja --buildtype {{ properties.buildType }} -D platform-name={{ properties.platformName }} --cross xpacks/micro-os-plus-build-helper/meson/toolchains/{{ properties.toolchainFileName }} --cross tests/platform-{{ properties.platformName }}/meson/cross.ini {{ properties.buildFolderRelativePathPosix }} tests",
58
- "commandMesonReconfigure": "meson setup --reconfigure {{ properties.buildFolderRelativePathPosix }} tests",
59
- "commandMesonBuild": "meson compile -C {{ properties.buildFolderRelativePathPosix }}",
60
- "commandMesonBuildVerbose": "meson compile -C {{ properties.buildFolderRelativePathPosix }} --verbose",
61
- "commandMesonClean": "meson compile -C {{ properties.buildFolderRelativePathPosix }} --clean",
62
- "commandMesonPerformTests": "meson test -C {{ properties.buildFolderRelativePathPosix }} --verbose"
63
- },
40
+ "minimumXpmRequired": "0.16.2",
64
41
  "actions": {
65
- "install-all": [
66
- "xpm install --all-configs --quiet"
67
- ],
68
- "link-deps": [
69
- "xpm link @micro-os-plus/build-helper",
70
- "xpm link @micro-os-plus/diag-trace"
71
- ],
72
- "test-all": [
73
- "xpm run test-native",
74
- "xpm run test-cortexm"
75
- ],
76
- "test-native": [
77
- "{% if os.platform == 'darwin' %}xpm run test-native-cmake{% endif %}",
78
- "xpm run test-native-cmake-gcc11",
79
- "xpm run test-native-cmake-clang12",
80
- "xpm run test-native-cmake-clang13",
81
- "{% if os.platform == 'darwin' %}xpm run test-native-meson{% endif %}",
82
- "xpm run test-native-meson-gcc11",
83
- "xpm run test-native-meson-clang12",
84
- "xpm run test-native-meson-clang13"
85
- ],
86
- "test-cortexm": [
87
- "xpm run test-qemu-mps2-an386-cmake",
88
- "xpm run test-qemu-mps2-an386-meson",
89
- "{% if os.platform == 'linux' %}xpm run test-stm32f4discovery-cmake{% endif %}",
90
- "{% if os.platform == 'darwin' and os.arch == 'x64' %}xpm run test-stm32f4discovery-cmake{% endif %}",
91
- "{% if os.platform == 'linux' %}xpm run test-stm32f4discovery-meson{% endif %}",
92
- "{% if os.platform == 'darwin' and os.arch == 'x64' %}xpm run test-stm32f4discovery-meson{% endif %}"
93
- ],
94
- "test-native-cmake": [
95
- "xpm run prepare --config native-cmake-debug",
96
- "xpm run build --config native-cmake-debug",
97
- "xpm run test --config native-cmake-debug",
98
- "xpm run prepare --config native-cmake-release",
99
- "xpm run build --config native-cmake-release",
100
- "xpm run test --config native-cmake-release"
101
- ],
102
- "test-native-cmake-gcc11": [
103
- "xpm run prepare --config native-cmake-gcc11-debug",
104
- "xpm run build --config native-cmake-gcc11-debug",
105
- "xpm run test --config native-cmake-gcc11-debug",
106
- "xpm run prepare --config native-cmake-gcc11-release",
107
- "xpm run build --config native-cmake-gcc11-release",
108
- "xpm run test --config native-cmake-gcc11-release"
109
- ],
110
- "test-native-cmake-clang12": [
111
- "xpm run prepare --config native-cmake-clang12-debug",
112
- "xpm run build --config native-cmake-clang12-debug",
113
- "xpm run test --config native-cmake-clang12-debug",
114
- "xpm run prepare --config native-cmake-clang12-release",
115
- "xpm run build --config native-cmake-clang12-release",
116
- "xpm run test --config native-cmake-clang12-release"
117
- ],
118
- "test-native-cmake-clang13": [
119
- "xpm run prepare --config native-cmake-clang13-debug",
120
- "xpm run build --config native-cmake-clang13-debug",
121
- "xpm run test --config native-cmake-clang13-debug",
122
- "xpm run prepare --config native-cmake-clang13-release",
123
- "xpm run build --config native-cmake-clang13-release",
124
- "xpm run test --config native-cmake-clang13-release"
125
- ],
126
- "test-native-meson": [
127
- "xpm run prepare --config native-meson-debug",
128
- "xpm run build --config native-meson-debug",
129
- "xpm run test --config native-meson-debug",
130
- "xpm run prepare --config native-meson-release",
131
- "xpm run build --config native-meson-release",
132
- "xpm run test --config native-meson-release"
133
- ],
134
- "test-native-meson-gcc11": [
135
- "xpm run prepare --config native-meson-gcc11-debug",
136
- "xpm run build --config native-meson-gcc11-debug",
137
- "xpm run test --config native-meson-gcc11-debug",
138
- "xpm run prepare --config native-meson-gcc11-release",
139
- "xpm run build --config native-meson-gcc11-release",
140
- "xpm run test --config native-meson-gcc11-release"
141
- ],
142
- "test-native-meson-clang12": [
143
- "xpm run prepare --config native-meson-clang12-debug",
144
- "xpm run build --config native-meson-clang12-debug",
145
- "xpm run test --config native-meson-clang12-debug",
146
- "xpm run prepare --config native-meson-clang12-release",
147
- "xpm run build --config native-meson-clang12-release",
148
- "xpm run test --config native-meson-clang12-release"
149
- ],
150
- "test-native-meson-clang13": [
151
- "xpm run prepare --config native-meson-clang13-debug",
152
- "xpm run build --config native-meson-clang13-debug",
153
- "xpm run test --config native-meson-clang13-debug",
154
- "xpm run prepare --config native-meson-clang13-release",
155
- "xpm run build --config native-meson-clang13-release",
156
- "xpm run test --config native-meson-clang13-release"
157
- ],
158
- "test-qemu-mps2-an386-cmake": [
159
- "xpm run prepare --config qemu-mps2-an386-cmake-debug",
160
- "xpm run build --config qemu-mps2-an386-cmake-debug",
161
- "xpm run test --config qemu-mps2-an386-cmake-debug",
162
- "xpm run prepare --config qemu-mps2-an386-cmake-release",
163
- "xpm run build --config qemu-mps2-an386-cmake-release",
164
- "xpm run test --config qemu-mps2-an386-cmake-release"
165
- ],
166
- "test-qemu-mps2-an386-meson": [
167
- "xpm run prepare --config qemu-mps2-an386-meson-debug",
168
- "xpm run build --config qemu-mps2-an386-meson-debug",
169
- "xpm run test --config qemu-mps2-an386-meson-debug",
170
- "xpm run prepare --config qemu-mps2-an386-meson-release",
171
- "xpm run build --config qemu-mps2-an386-meson-release",
172
- "xpm run test --config qemu-mps2-an386-meson-release"
173
- ],
174
- "test-stm32f4discovery-cmake": [
175
- "xpm run prepare --config stm32f4discovery-cmake-debug",
176
- "xpm run build --config stm32f4discovery-cmake-debug",
177
- "xpm run test --config stm32f4discovery-cmake-debug",
178
- "xpm run prepare --config stm32f4discovery-cmake-release",
179
- "xpm run build --config stm32f4discovery-cmake-release",
180
- "xpm run test --config stm32f4discovery-cmake-release"
181
- ],
182
- "test-stm32f4discovery-meson": [
183
- "xpm run prepare --config stm32f4discovery-meson-debug",
184
- "xpm run build --config stm32f4discovery-meson-debug",
185
- "xpm run test --config stm32f4discovery-meson-debug",
186
- "xpm run prepare --config stm32f4discovery-meson-release",
187
- "xpm run build --config stm32f4discovery-meson-release",
188
- "xpm run test --config stm32f4discovery-meson-release"
189
- ],
190
- "clean-all": [
191
- "xpm run clean --config native-cmake-debug",
192
- "xpm run clean --config native-cmake-release",
193
- "xpm run clean --config native-cmake-gcc11-debug",
194
- "xpm run clean --config native-cmake-gcc11-release",
195
- "xpm run clean --config native-cmake-clang12-debug",
196
- "xpm run clean --config native-cmake-clang12-release",
197
- "xpm run clean --config native-cmake-clang13-debug",
198
- "xpm run clean --config native-cmake-clang13-release",
199
- "xpm run clean --config native-meson-debug",
200
- "xpm run clean --config native-meson-release",
201
- "xpm run clean --config native-meson-gcc11-debug",
202
- "xpm run clean --config native-meson-gcc11-release",
203
- "xpm run clean --config native-meson-clang12-debug",
204
- "xpm run clean --config native-meson-clang12-release",
205
- "xpm run clean --config native-meson-clang13-debug",
206
- "xpm run clean --config native-meson-clang13-release",
207
- "xpm run clean --config qemu-mps2-an386-cmake-debug",
208
- "xpm run clean --config qemu-mps2-an386-cmake-release",
209
- "xpm run clean --config qemu-mps2-an386-meson-debug",
210
- "xpm run clean --config qemu-mps2-an386-meson-release",
211
- "xpm run clean --config stm32f4discovery-cmake-debug",
212
- "xpm run clean --config stm32f4discovery-cmake-release",
213
- "xpm run clean --config stm32f4discovery-meson-debug",
214
- "xpm run clean --config stm32f4discovery-meson-release"
215
- ],
216
- "deep-clean": "rm -rf build node_modules xpacks",
217
- "trigger-workflow-test-all": "bash tests/scripts/trigger-workflow-test-all.sh"
42
+ "deep-clean": "del-cli node_modules package-lock.json",
43
+ "npm-install": "npm install",
44
+ "git-log": "git log --pretty='%cd * %h %s' --date=short",
45
+ "npm-pack": "npm pack",
46
+ "npm-version-patch": "npm version patch",
47
+ "npm-version-minor": "npm version minor",
48
+ "npm-version": "echo $(which node) $(node --version) && echo $(which npm) $(npm --version)"
218
49
  },
219
- "buildConfigurations": {
220
- "native-cmake-debug": {
221
- "properties": {
222
- "buildType": "Debug",
223
- "platformName": "native"
224
- },
225
- "actions": {
226
- "link-deps": [
227
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
228
- ],
229
- "prepare": "{{ properties.commandCMakePrepare }}",
230
- "build": [
231
- "{{ properties.commandCMakeReconfigure }}",
232
- "{{ properties.commandCMakeBuild }}"
233
- ],
234
- "test": "{{ properties.commandCMakePerformTests }}",
235
- "clean": "{{ properties.commandCMakeClean }}"
236
- },
237
- "devDependencies": {
238
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
239
- }
240
- },
241
- "native-cmake-release": {
242
- "properties": {
243
- "buildType": "Release",
244
- "platformName": "native"
245
- },
246
- "actions": {
247
- "link-deps": [
248
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
249
- ],
250
- "prepare": "{{ properties.commandCMakePrepare }}",
251
- "build": [
252
- "{{ properties.commandCMakeReconfigure }}",
253
- "{{ properties.commandCMakeBuild }}"
254
- ],
255
- "test": "{{ properties.commandCMakePerformTests }}",
256
- "clean": "{{ properties.commandCMakeClean }}"
257
- },
258
- "devDependencies": {
259
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
260
- }
261
- },
262
- "native-cmake-gcc11-debug": {
263
- "properties": {
264
- "buildType": "Debug",
265
- "platformName": "native",
266
- "toolchainFileName": "gcc.cmake"
267
- },
268
- "actions": {
269
- "link-deps": [
270
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
271
- ],
272
- "prepare": "{{ properties.commandCMakePrepareWithToolchain }}",
273
- "build": [
274
- "{{ properties.commandCMakeReconfigure }}",
275
- "{{ properties.commandCMakeBuild }}"
276
- ],
277
- "test": "{{ properties.commandCMakePerformTests }}",
278
- "clean": "{{ properties.commandCMakeClean }}"
279
- },
280
- "devDependencies": {
281
- "@xpack-dev-tools/gcc": "11.2.0-3.3",
282
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
283
- }
284
- },
285
- "native-cmake-gcc11-release": {
286
- "properties": {
287
- "buildType": "Release",
288
- "platformName": "native",
289
- "toolchainFileName": "gcc.cmake"
290
- },
291
- "actions": {
292
- "link-deps": [
293
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
294
- ],
295
- "prepare": "{{ properties.commandCMakePrepareWithToolchain }}",
296
- "build": [
297
- "{{ properties.commandCMakeReconfigure }}",
298
- "{{ properties.commandCMakeBuild }}"
299
- ],
300
- "test": "{{ properties.commandCMakePerformTests }}",
301
- "clean": "{{ properties.commandCMakeClean }}"
302
- },
303
- "devDependencies": {
304
- "@xpack-dev-tools/gcc": "11.2.0-3.3",
305
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
306
- }
307
- },
308
- "native-cmake-clang12-debug": {
309
- "properties": {
310
- "buildType": "Debug",
311
- "platformName": "native",
312
- "toolchainFileName": "clang.cmake"
313
- },
314
- "actions": {
315
- "link-deps": [
316
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
317
- ],
318
- "prepare": "{{ properties.commandCMakePrepareWithToolchain }}",
319
- "build": [
320
- "{{ properties.commandCMakeReconfigure }}",
321
- "{{ properties.commandCMakeBuild }}"
322
- ],
323
- "test": "{{ properties.commandCMakePerformTests }}",
324
- "clean": "{{ properties.commandCMakeClean }}"
325
- },
326
- "devDependencies": {
327
- "@xpack-dev-tools/clang": "12.0.1-2.2",
328
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
329
- }
330
- },
331
- "native-cmake-clang12-release": {
332
- "properties": {
333
- "buildType": "Release",
334
- "platformName": "native",
335
- "toolchainFileName": "clang.cmake"
336
- },
337
- "actions": {
338
- "link-deps": [
339
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
340
- ],
341
- "prepare": "{{ properties.commandCMakePrepareWithToolchain }}",
342
- "build": [
343
- "{{ properties.commandCMakeReconfigure }}",
344
- "{{ properties.commandCMakeBuild }}"
345
- ],
346
- "test": "{{ properties.commandCMakePerformTests }}",
347
- "clean": "{{ properties.commandCMakeClean }}"
348
- },
349
- "devDependencies": {
350
- "@xpack-dev-tools/clang": "12.0.1-2.2",
351
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
352
- }
353
- },
354
- "native-cmake-clang13-debug": {
355
- "properties": {
356
- "buildType": "Debug",
357
- "platformName": "native",
358
- "toolchainFileName": "clang.cmake"
359
- },
360
- "actions": {
361
- "link-deps": [
362
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
363
- ],
364
- "prepare": "{{ properties.commandCMakePrepareWithToolchain }}",
365
- "build": [
366
- "{{ properties.commandCMakeReconfigure }}",
367
- "{{ properties.commandCMakeBuild }}"
368
- ],
369
- "test": "{{ properties.commandCMakePerformTests }}",
370
- "clean": "{{ properties.commandCMakeClean }}"
371
- },
372
- "devDependencies": {
373
- "@xpack-dev-tools/clang": "13.0.1-1.1",
374
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
375
- }
376
- },
377
- "native-cmake-clang13-release": {
378
- "properties": {
379
- "buildType": "Release",
380
- "platformName": "native",
381
- "toolchainFileName": "clang.cmake"
382
- },
383
- "actions": {
384
- "link-deps": [
385
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
386
- ],
387
- "prepare": "{{ properties.commandCMakePrepareWithToolchain }}",
388
- "build": [
389
- "{{ properties.commandCMakeReconfigure }}",
390
- "{{ properties.commandCMakeBuild }}"
391
- ],
392
- "test": "{{ properties.commandCMakePerformTests }}",
393
- "clean": "{{ properties.commandCMakeClean }}"
394
- },
395
- "devDependencies": {
396
- "@xpack-dev-tools/clang": "13.0.1-1.1",
397
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
398
- }
399
- },
400
- "native-meson-debug": {
401
- "properties": {
402
- "buildType": "debug",
403
- "platformName": "native"
404
- },
405
- "actions": {
406
- "link-deps": [
407
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
408
- ],
409
- "prepare": "{{ properties.commandMesonPrepare }}",
410
- "build": [
411
- "{{ properties.commandMesonReconfigure }}",
412
- "{{ properties.commandMesonBuild }}"
413
- ],
414
- "test": "{{ properties.commandMesonPerformTests }}",
415
- "clean": "{{ properties.commandMesonClean }}"
416
- },
417
- "devDependencies": {
418
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
419
- }
420
- },
421
- "native-meson-release": {
422
- "properties": {
423
- "buildType": "release",
424
- "platformName": "native"
425
- },
426
- "actions": {
427
- "link-deps": [
428
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
429
- ],
430
- "prepare": "{{ properties.commandMesonPrepare }}",
431
- "build": [
432
- "{{ properties.commandMesonReconfigure }}",
433
- "{{ properties.commandMesonBuild }}"
434
- ],
435
- "test": "{{ properties.commandMesonPerformTests }}",
436
- "clean": "{{ properties.commandMesonClean }}"
437
- },
438
- "devDependencies": {
439
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
440
- }
441
- },
442
- "native-meson-gcc11-debug": {
443
- "properties": {
444
- "buildType": "debug",
445
- "platformName": "native",
446
- "toolchainFileName": "gcc-{{ os.platform }}.ini"
447
- },
448
- "actions": {
449
- "link-deps": [
450
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
451
- ],
452
- "prepare": "{{ properties.commandMesonPrepareWithToolchain }}",
453
- "build": [
454
- "{{ properties.commandMesonReconfigure }}",
455
- "{{ properties.commandMesonBuild }}"
456
- ],
457
- "test": "{{ properties.commandMesonPerformTests }}",
458
- "clean": "{{ properties.commandMesonClean }}"
459
- },
460
- "devDependencies": {
461
- "@xpack-dev-tools/gcc": "11.2.0-3.3",
462
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
463
- }
464
- },
465
- "native-meson-gcc11-release": {
466
- "properties": {
467
- "buildType": "release",
468
- "platformName": "native",
469
- "toolchainFileName": "gcc-{{ os.platform }}.ini"
470
- },
471
- "actions": {
472
- "link-deps": [
473
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
474
- ],
475
- "prepare": "{{ properties.commandMesonPrepareWithToolchain }}",
476
- "build": [
477
- "{{ properties.commandMesonReconfigure }}",
478
- "{{ properties.commandMesonBuild }}"
479
- ],
480
- "test": "{{ properties.commandMesonPerformTests }}",
481
- "clean": "{{ properties.commandMesonClean }}"
482
- },
483
- "devDependencies": {
484
- "@xpack-dev-tools/gcc": "11.2.0-3.3",
485
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
486
- }
487
- },
488
- "native-meson-clang12-debug": {
489
- "properties": {
490
- "buildType": "debug",
491
- "platformName": "native",
492
- "toolchainFileName": "clang-{{ os.platform }}.ini"
493
- },
494
- "actions": {
495
- "link-deps": [
496
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
497
- ],
498
- "prepare": "{{ properties.commandMesonPrepareWithToolchain }}",
499
- "build": [
500
- "{{ properties.commandMesonReconfigure }}",
501
- "{{ properties.commandMesonBuild }}"
502
- ],
503
- "test": "{{ properties.commandMesonPerformTests }}",
504
- "clean": "{{ properties.commandMesonClean }}"
505
- },
506
- "devDependencies": {
507
- "@xpack-dev-tools/clang": "12.0.1-2.2",
508
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
509
- }
510
- },
511
- "native-meson-clang12-release": {
512
- "properties": {
513
- "buildType": "release",
514
- "platformName": "native",
515
- "toolchainFileName": "clang-{{ os.platform }}.ini"
516
- },
517
- "actions": {
518
- "link-deps": [
519
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
520
- ],
521
- "prepare": "{{ properties.commandMesonPrepareWithToolchain }}",
522
- "build": [
523
- "{{ properties.commandMesonReconfigure }}",
524
- "{{ properties.commandMesonBuild }}"
525
- ],
526
- "test": "{{ properties.commandMesonPerformTests }}",
527
- "clean": "{{ properties.commandMesonClean }}"
528
- },
529
- "devDependencies": {
530
- "@xpack-dev-tools/clang": "12.0.1-2.2",
531
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
532
- }
533
- },
534
- "native-meson-clang13-debug": {
535
- "properties": {
536
- "buildType": "debug",
537
- "platformName": "native",
538
- "toolchainFileName": "clang-{{ os.platform }}.ini"
539
- },
540
- "actions": {
541
- "link-deps": [
542
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
543
- ],
544
- "prepare": "{{ properties.commandMesonPrepareWithToolchain }}",
545
- "build": [
546
- "{{ properties.commandMesonReconfigure }}",
547
- "{{ properties.commandMesonBuild }}"
548
- ],
549
- "test": "{{ properties.commandMesonPerformTests }}",
550
- "clean": "{{ properties.commandMesonClean }}"
551
- },
552
- "devDependencies": {
553
- "@xpack-dev-tools/clang": "13.0.1-1.1",
554
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
555
- }
556
- },
557
- "native-meson-clang13-release": {
558
- "properties": {
559
- "buildType": "release",
560
- "platformName": "native",
561
- "toolchainFileName": "clang-{{ os.platform }}.ini"
562
- },
563
- "actions": {
564
- "link-deps": [
565
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-synthetic-posix"
566
- ],
567
- "prepare": "{{ properties.commandMesonPrepareWithToolchain }}",
568
- "build": [
569
- "{{ properties.commandMesonReconfigure }}",
570
- "{{ properties.commandMesonBuild }}"
571
- ],
572
- "test": "{{ properties.commandMesonPerformTests }}",
573
- "clean": "{{ properties.commandMesonClean }}"
574
- },
575
- "devDependencies": {
576
- "@xpack-dev-tools/clang": "13.0.1-1.1",
577
- "@micro-os-plus/architecture-synthetic-posix": "4.0.0"
578
- }
579
- },
580
- "qemu-mps2-an386-cmake-debug": {
581
- "properties": {
582
- "buildType": "Debug",
583
- "platformName": "qemu-mps2-an386",
584
- "toolchainFileName": "arm-none-eabi-gcc.cmake",
585
- "qemuBoardName": "QEMU mps2-an386",
586
- "shortConfigurationName": "q1d",
587
- "buildFolderRelativePath": "{% if os.platform != 'win32' %}{{ 'build' | path_join: configuration.name | to_filename | downcase }}{% else %}{{ 'build' | path_join: properties.shortConfigurationName | to_filename | downcase }}{% endif %}",
588
- "buildFolderRelativePathPosix": "{% if os.platform != 'win32' %}{{ 'build' | path_posix_join: configuration.name | downcase }}{% else %}{{ 'build' | path_posix_join: properties.shortConfigurationName | downcase }}{% endif %}"
589
- },
590
- "actions": {
591
- "link-deps": [
592
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-cortexm",
593
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-cortexm",
594
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-qemu-cortexm",
595
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-c",
596
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-cpp",
597
- "xpm link --config {{ configuration.name }} @micro-os-plus/semihosting",
598
- "xpm link --config {{ configuration.name }} @micro-os-plus/startup",
599
- "xpm link --config {{ configuration.name }} @micro-os-plus/version",
600
- "xpm link --config {{ configuration.name }} @xpack-3rd-party/arm-cmsis-core"
601
- ],
602
- "prepare": "{{ properties.commandCMakePrepareWithToolchain }}",
603
- "build": [
604
- "{{ properties.commandCMakeReconfigure }}",
605
- "{{ properties.commandCMakeBuild }}"
606
- ],
607
- "test": "{{ properties.commandCMakePerformTests }}",
608
- "clean": "{{ properties.commandCMakeClean }}"
609
- },
610
- "devDependencies": {
611
- "@xpack-dev-tools/arm-none-eabi-gcc": "10.3.1-2.3.1",
612
- "@xpack-dev-tools/qemu-arm": "6.2.0-1.1",
613
- "@micro-os-plus/architecture-cortexm": "5.0.0",
614
- "@micro-os-plus/devices-cortexm": "3.0.0",
615
- "@micro-os-plus/devices-qemu-cortexm": "3.0.0",
616
- "@micro-os-plus/libs-c": "3.0.0",
617
- "@micro-os-plus/libs-cpp": "3.0.0",
618
- "@micro-os-plus/semihosting": "4.0.0",
619
- "@micro-os-plus/startup": "3.0.0",
620
- "@micro-os-plus/version": "7.1.2",
621
- "@xpack-3rd-party/arm-cmsis-core": "5.4.0-6"
622
- }
623
- },
624
- "qemu-mps2-an386-cmake-release": {
625
- "properties": {
626
- "buildType": "MinSizeRel",
627
- "platformName": "qemu-mps2-an386",
628
- "toolchainFileName": "arm-none-eabi-gcc.cmake",
629
- "qemuBoardName": "QEMU mps2-an386",
630
- "shortConfigurationName": "q1r",
631
- "buildFolderRelativePath": "{% if os.platform != 'win32' %}{{ 'build' | path_join: configuration.name | to_filename | downcase }}{% else %}{{ 'build' | path_join: properties.shortConfigurationName | to_filename | downcase }}{% endif %}",
632
- "buildFolderRelativePathPosix": "{% if os.platform != 'win32' %}{{ 'build' | path_posix_join: configuration.name | downcase }}{% else %}{{ 'build' | path_posix_join: properties.shortConfigurationName | downcase }}{% endif %}"
633
- },
634
- "actions": {
635
- "link-deps": [
636
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-cortexm",
637
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-cortexm",
638
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-qemu-cortexm",
639
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-c",
640
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-cpp",
641
- "xpm link --config {{ configuration.name }} @micro-os-plus/semihosting",
642
- "xpm link --config {{ configuration.name }} @micro-os-plus/startup",
643
- "xpm link --config {{ configuration.name }} @micro-os-plus/version",
644
- "xpm link --config {{ configuration.name }} @xpack-3rd-party/arm-cmsis-core"
645
- ],
646
- "prepare": "{{ properties.commandCMakePrepareWithToolchain }}",
647
- "build": [
648
- "{{ properties.commandCMakeReconfigure }}",
649
- "{{ properties.commandCMakeBuild }}"
650
- ],
651
- "test": "{{ properties.commandCMakePerformTests }}",
652
- "clean": "{{ properties.commandCMakeClean }}"
653
- },
654
- "devDependencies": {
655
- "@xpack-dev-tools/arm-none-eabi-gcc": "10.3.1-2.3.1",
656
- "@xpack-dev-tools/qemu-arm": "6.2.0-1.1",
657
- "@micro-os-plus/architecture-cortexm": "5.0.0",
658
- "@micro-os-plus/devices-cortexm": "3.0.0",
659
- "@micro-os-plus/devices-qemu-cortexm": "3.0.0",
660
- "@micro-os-plus/libs-c": "3.0.0",
661
- "@micro-os-plus/libs-cpp": "3.0.0",
662
- "@micro-os-plus/semihosting": "4.0.0",
663
- "@micro-os-plus/startup": "3.0.0",
664
- "@micro-os-plus/version": "7.1.2",
665
- "@xpack-3rd-party/arm-cmsis-core": "5.4.0-6"
666
- }
667
- },
668
- "qemu-mps2-an386-meson-debug": {
669
- "properties": {
670
- "buildType": "debug",
671
- "platformName": "qemu-mps2-an386",
672
- "toolchainFileName": "arm-none-eabi-gcc-{{ os.platform }}.ini",
673
- "qemuBoardName": "QEMU mps2-an386"
674
- },
675
- "actions": {
676
- "link-deps": [
677
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-cortexm",
678
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-cortexm",
679
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-qemu-cortexm",
680
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-c",
681
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-cpp",
682
- "xpm link --config {{ configuration.name }} @micro-os-plus/semihosting",
683
- "xpm link --config {{ configuration.name }} @micro-os-plus/startup",
684
- "xpm link --config {{ configuration.name }} @micro-os-plus/version",
685
- "xpm link --config {{ configuration.name }} @xpack-3rd-party/arm-cmsis-core"
686
- ],
687
- "prepare": "{{ properties.commandMesonPrepareCross }}",
688
- "build": [
689
- "{{ properties.commandMesonReconfigure }}",
690
- "{{ properties.commandMesonBuild }}"
691
- ],
692
- "test": "{{ properties.commandMesonPerformTests }}",
693
- "clean": "{{ properties.commandMesonClean }}"
694
- },
695
- "devDependencies": {
696
- "@xpack-dev-tools/arm-none-eabi-gcc": "10.3.1-2.3.1",
697
- "@xpack-dev-tools/qemu-arm": "6.2.0-1.1",
698
- "@micro-os-plus/architecture-cortexm": "5.0.0",
699
- "@micro-os-plus/devices-cortexm": "3.0.0",
700
- "@micro-os-plus/devices-qemu-cortexm": "3.0.0",
701
- "@micro-os-plus/libs-c": "3.0.0",
702
- "@micro-os-plus/libs-cpp": "3.0.0",
703
- "@micro-os-plus/semihosting": "4.0.0",
704
- "@micro-os-plus/startup": "3.0.0",
705
- "@micro-os-plus/version": "7.1.2",
706
- "@xpack-3rd-party/arm-cmsis-core": "5.4.0-6"
707
- }
708
- },
709
- "qemu-mps2-an386-meson-release": {
710
- "properties": {
711
- "buildType": "minsize",
712
- "platformName": "qemu-mps2-an386",
713
- "toolchainFileName": "arm-none-eabi-gcc-{{ os.platform }}.ini",
714
- "qemuBoardName": "QEMU mps2-an386"
715
- },
716
- "actions": {
717
- "link-deps": [
718
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-cortexm",
719
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-cortexm",
720
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-qemu-cortexm",
721
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-c",
722
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-cpp",
723
- "xpm link --config {{ configuration.name }} @micro-os-plus/semihosting",
724
- "xpm link --config {{ configuration.name }} @micro-os-plus/startup",
725
- "xpm link --config {{ configuration.name }} @micro-os-plus/version",
726
- "xpm link --config {{ configuration.name }} @xpack-3rd-party/arm-cmsis-core"
727
- ],
728
- "prepare": "{{ properties.commandMesonPrepareCross }}",
729
- "build": [
730
- "{{ properties.commandMesonReconfigure }}",
731
- "{{ properties.commandMesonBuild }}"
732
- ],
733
- "test": "{{ properties.commandMesonPerformTests }}",
734
- "clean": "{{ properties.commandMesonClean }}"
735
- },
736
- "devDependencies": {
737
- "@xpack-dev-tools/arm-none-eabi-gcc": "10.3.1-2.3.1",
738
- "@xpack-dev-tools/qemu-arm": "6.2.0-1.1",
739
- "@micro-os-plus/architecture-cortexm": "5.0.0",
740
- "@micro-os-plus/devices-cortexm": "3.0.0",
741
- "@micro-os-plus/devices-qemu-cortexm": "3.0.0",
742
- "@micro-os-plus/libs-c": "3.0.0",
743
- "@micro-os-plus/libs-cpp": "3.0.0",
744
- "@micro-os-plus/semihosting": "4.0.0",
745
- "@micro-os-plus/startup": "3.0.0",
746
- "@micro-os-plus/version": "7.1.2",
747
- "@xpack-3rd-party/arm-cmsis-core": "5.4.0-6"
748
- }
749
- },
750
- "stm32f4discovery-cmake-debug": {
751
- "properties": {
752
- "buildType": "Debug",
753
- "platformName": "stm32f4discovery",
754
- "toolchainFileName": "arm-none-eabi-gcc.cmake",
755
- "qemuBoardName": "STM32F4-Discovery"
756
- },
757
- "actions": {
758
- "link-deps": [
759
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-cortexm",
760
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-cortexm",
761
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-stm32f4-extras",
762
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-c",
763
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-cpp",
764
- "xpm link --config {{ configuration.name }} @micro-os-plus/platform-stm32f4discovery",
765
- "xpm link --config {{ configuration.name }} @micro-os-plus/semihosting",
766
- "xpm link --config {{ configuration.name }} @micro-os-plus/startup",
767
- "xpm link --config {{ configuration.name }} @micro-os-plus/version"
768
- ],
769
- "prepare": "{{ properties.commandCMakePrepareWithToolchain }}",
770
- "build": [
771
- "{{ properties.commandCMakeReconfigure }}",
772
- "{{ properties.commandCMakeBuild }}"
773
- ],
774
- "test": "{{ properties.commandCMakePerformTests }}",
775
- "clean": "{{ properties.commandCMakeClean }}"
776
- },
777
- "devDependencies": {
778
- "@xpack-dev-tools/arm-none-eabi-gcc": "10.3.1-2.3.1",
779
- "@xpack-dev-tools/qemu-arm": "6.2.0-1.1",
780
- "@micro-os-plus/architecture-cortexm": "5.0.0",
781
- "@micro-os-plus/devices-cortexm": "3.0.0",
782
- "@micro-os-plus/devices-stm32f4-extras": "2.2.2",
783
- "@micro-os-plus/libs-c": "3.0.0",
784
- "@micro-os-plus/libs-cpp": "3.0.0",
785
- "@micro-os-plus/platform-stm32f4discovery": "3.3.1",
786
- "@micro-os-plus/semihosting": "4.0.0",
787
- "@micro-os-plus/startup": "3.0.0",
788
- "@micro-os-plus/version": "7.1.2",
789
- "@xpack-3rd-party/arm-cmsis-core": "5.4.0-6"
790
- }
791
- },
792
- "stm32f4discovery-cmake-release": {
793
- "properties": {
794
- "buildType": "MinSizeRel",
795
- "platformName": "stm32f4discovery",
796
- "toolchainFileName": "arm-none-eabi-gcc.cmake",
797
- "qemuBoardName": "STM32F4-Discovery"
798
- },
799
- "actions": {
800
- "link-deps": [
801
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-cortexm",
802
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-cortexm",
803
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-stm32f4-extras",
804
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-c",
805
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-cpp",
806
- "xpm link --config {{ configuration.name }} @micro-os-plus/platform-stm32f4discovery",
807
- "xpm link --config {{ configuration.name }} @micro-os-plus/semihosting",
808
- "xpm link --config {{ configuration.name }} @micro-os-plus/startup",
809
- "xpm link --config {{ configuration.name }} @micro-os-plus/version"
810
- ],
811
- "prepare": "{{ properties.commandCMakePrepareWithToolchain }}",
812
- "build": [
813
- "{{ properties.commandCMakeReconfigure }}",
814
- "{{ properties.commandCMakeBuild }}"
815
- ],
816
- "test": "{{ properties.commandCMakePerformTests }}",
817
- "clean": "{{ properties.commandCMakeClean }}"
818
- },
819
- "devDependencies": {
820
- "@xpack-dev-tools/arm-none-eabi-gcc": "10.3.1-2.3.1",
821
- "@xpack-dev-tools/qemu-arm": "6.2.0-1.1",
822
- "@micro-os-plus/architecture-cortexm": "5.0.0",
823
- "@micro-os-plus/devices-cortexm": "3.0.0",
824
- "@micro-os-plus/devices-stm32f4-extras": "2.2.2",
825
- "@micro-os-plus/libs-c": "3.0.0",
826
- "@micro-os-plus/libs-cpp": "3.0.0",
827
- "@micro-os-plus/platform-stm32f4discovery": "3.3.1",
828
- "@micro-os-plus/semihosting": "4.0.0",
829
- "@micro-os-plus/startup": "3.0.0",
830
- "@micro-os-plus/version": "7.1.2",
831
- "@xpack-3rd-party/arm-cmsis-core": "5.4.0-6"
832
- }
833
- },
834
- "stm32f4discovery-meson-debug": {
835
- "properties": {
836
- "buildType": "debug",
837
- "platformName": "stm32f4discovery",
838
- "toolchainFileName": "arm-none-eabi-gcc.ini",
839
- "toolchainWindowsFileName": "arm-none-eabi-gcc-cmd.ini",
840
- "qemuBoardName": "STM32F4-Discovery"
841
- },
842
- "actions": {
843
- "link-deps": [
844
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-cortexm",
845
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-cortexm",
846
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-stm32f4-extras",
847
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-c",
848
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-cpp",
849
- "xpm link --config {{ configuration.name }} @micro-os-plus/platform-stm32f4discovery",
850
- "xpm link --config {{ configuration.name }} @micro-os-plus/semihosting",
851
- "xpm link --config {{ configuration.name }} @micro-os-plus/startup",
852
- "xpm link --config {{ configuration.name }} @micro-os-plus/version"
853
- ],
854
- "prepare": "{{ properties.commandMesonPrepareCross }}",
855
- "build": [
856
- "{{ properties.commandMesonReconfigure }}",
857
- "{{ properties.commandMesonBuild }}"
858
- ],
859
- "test": "{{ properties.commandMesonPerformTests }}",
860
- "clean": "{{ properties.commandMesonClean }}"
861
- },
862
- "devDependencies": {
863
- "@xpack-dev-tools/arm-none-eabi-gcc": "10.3.1-2.3.1",
864
- "@xpack-dev-tools/qemu-arm": "6.2.0-1.1",
865
- "@micro-os-plus/architecture-cortexm": "5.0.0",
866
- "@micro-os-plus/devices-cortexm": "3.0.0",
867
- "@micro-os-plus/devices-stm32f4-extras": "2.2.2",
868
- "@micro-os-plus/libs-c": "3.0.0",
869
- "@micro-os-plus/libs-cpp": "3.0.0",
870
- "@micro-os-plus/platform-stm32f4discovery": "3.3.1",
871
- "@micro-os-plus/semihosting": "4.0.0",
872
- "@micro-os-plus/startup": "3.0.0",
873
- "@micro-os-plus/version": "7.1.2",
874
- "@xpack-3rd-party/arm-cmsis-core": "5.4.0-6"
875
- }
876
- },
877
- "stm32f4discovery-meson-release": {
878
- "properties": {
879
- "buildType": "minsize",
880
- "platformName": "stm32f4discovery",
881
- "toolchainFileName": "arm-none-eabi-gcc.ini",
882
- "toolchainWindowsFileName": "arm-none-eabi-gcc-cmd.ini",
883
- "qemuBoardName": "STM32F4-Discovery"
884
- },
885
- "actions": {
886
- "link-deps": [
887
- "xpm link --config {{ configuration.name }} @micro-os-plus/architecture-cortexm",
888
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-cortexm",
889
- "xpm link --config {{ configuration.name }} @micro-os-plus/devices-stm32f4-extras",
890
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-c",
891
- "xpm link --config {{ configuration.name }} @micro-os-plus/libs-cpp",
892
- "xpm link --config {{ configuration.name }} @micro-os-plus/platform-stm32f4discovery",
893
- "xpm link --config {{ configuration.name }} @micro-os-plus/semihosting",
894
- "xpm link --config {{ configuration.name }} @micro-os-plus/startup",
895
- "xpm link --config {{ configuration.name }} @micro-os-plus/version"
896
- ],
897
- "prepare": "{{ properties.commandMesonPrepareCross }}",
898
- "build": [
899
- "{{ properties.commandMesonReconfigure }}",
900
- "{{ properties.commandMesonBuild }}"
901
- ],
902
- "test": "{{ properties.commandMesonPerformTests }}",
903
- "clean": "{{ properties.commandMesonClean }}"
904
- },
905
- "devDependencies": {
906
- "@xpack-dev-tools/arm-none-eabi-gcc": "10.3.1-2.3.1",
907
- "@xpack-dev-tools/qemu-arm": "6.2.0-1.1",
908
- "@micro-os-plus/architecture-cortexm": "5.0.0",
909
- "@micro-os-plus/devices-cortexm": "3.0.0",
910
- "@micro-os-plus/devices-stm32f4-extras": "2.2.2",
911
- "@micro-os-plus/libs-c": "3.0.0",
912
- "@micro-os-plus/libs-cpp": "3.0.0",
913
- "@micro-os-plus/platform-stm32f4discovery": "3.3.1",
914
- "@micro-os-plus/semihosting": "4.0.0",
915
- "@micro-os-plus/startup": "3.0.0",
916
- "@micro-os-plus/version": "7.1.2",
917
- "@xpack-3rd-party/arm-cmsis-core": "5.4.0-6"
918
- }
919
- }
920
- }
50
+ "dependencies": {},
51
+ "devDependencies": {},
52
+ "properties": {},
53
+ "buildConfigurations": {}
921
54
  }
922
55
  }