|
1 | 1 | { |
2 | 2 | "version": 3, |
3 | 3 | "cmakeMinimumRequired": { |
4 | | - "major": 3, "minor": 20, "patch": 0 |
| 4 | + "major": 3, |
| 5 | + "minor": 20, |
| 6 | + "patch": 0 |
5 | 7 | }, |
6 | 8 | "configurePresets": [ |
7 | 9 | { |
8 | 10 | "name": "dev", |
9 | | - "displayName": "Dev (Release)", |
| 11 | + "displayName": "Dev (Release, Linux)", |
10 | 12 | "generator": "Unix Makefiles", |
11 | 13 | "binaryDir": "build", |
12 | 14 | "cacheVariables": { |
|
16 | 18 | }, |
17 | 19 | { |
18 | 20 | "name": "dev-debug", |
19 | | - "displayName": "Dev (Debug)", |
| 21 | + "displayName": "Dev (Debug, Linux)", |
20 | 22 | "generator": "Unix Makefiles", |
21 | 23 | "binaryDir": "build-debug", |
22 | 24 | "cacheVariables": { |
23 | 25 | "CMAKE_BUILD_TYPE": "Debug", |
24 | 26 | "QBIN_BUILD_TESTS": "ON" |
25 | 27 | } |
| 28 | + }, |
| 29 | + { |
| 30 | + "name": "win-msvc", |
| 31 | + "displayName": "Windows MSVC (Release)", |
| 32 | + "generator": "Visual Studio 17 2022", |
| 33 | + "architecture": "x64", |
| 34 | + "binaryDir": "build-win", |
| 35 | + "cacheVariables": { |
| 36 | + "CMAKE_BUILD_TYPE": "Release", |
| 37 | + "QBIN_BUILD_TESTS": "ON" |
| 38 | + } |
| 39 | + }, |
| 40 | + { |
| 41 | + "name": "win-msvc-debug", |
| 42 | + "displayName": "Windows MSVC (Debug)", |
| 43 | + "generator": "Visual Studio 17 2022", |
| 44 | + "architecture": "x64", |
| 45 | + "binaryDir": "build-win-debug", |
| 46 | + "cacheVariables": { |
| 47 | + "CMAKE_BUILD_TYPE": "Debug", |
| 48 | + "QBIN_BUILD_TESTS": "ON" |
| 49 | + } |
26 | 50 | } |
27 | 51 | ], |
28 | 52 | "buildPresets": [ |
29 | | - { "name": "dev", "configurePreset": "dev" }, |
30 | | - { "name": "dev-debug", "configurePreset": "dev-debug" } |
| 53 | + { |
| 54 | + "name": "dev", |
| 55 | + "configurePreset": "dev" |
| 56 | + }, |
| 57 | + { |
| 58 | + "name": "dev-debug", |
| 59 | + "configurePreset": "dev-debug" |
| 60 | + }, |
| 61 | + { |
| 62 | + "name": "win-msvc", |
| 63 | + "configurePreset": "win-msvc" |
| 64 | + }, |
| 65 | + { |
| 66 | + "name": "win-msvc-debug", |
| 67 | + "configurePreset": "win-msvc-debug" |
| 68 | + } |
31 | 69 | ], |
32 | 70 | "testPresets": [ |
33 | 71 | { |
|
39 | 77 | "name": "dev-debug", |
40 | 78 | "configurePreset": "dev-debug", |
41 | 79 | "output": { "outputOnFailure": true } |
| 80 | + }, |
| 81 | + { |
| 82 | + "name": "win-msvc", |
| 83 | + "configurePreset": "win-msvc", |
| 84 | + "output": { "outputOnFailure": true } |
| 85 | + }, |
| 86 | + { |
| 87 | + "name": "win-msvc-debug", |
| 88 | + "configurePreset": "win-msvc-debug", |
| 89 | + "output": { "outputOnFailure": true } |
42 | 90 | } |
43 | 91 | ] |
44 | 92 | } |
0 commit comments