File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 2929 - name : Run CMake consuming CMakePreset.json and run vcpkg to build packages
3030 uses : lukka/run-cmake@v10
3131 with :
32- configurePreset : ' linux-x64'
32+ configurePreset : ' linux-x64-debug '
3333
3434 - name : Build
3535 # Build your program with the given configuration
Original file line number Diff line number Diff line change 3030 },
3131 {
3232 "name" : " linux-x64" ,
33+ "hidden" : true ,
3334 "inherits" : " base" ,
3435 "description" : " Preset for x64 Linux" ,
3536 "cacheVariables" : {
3637 "CMAKE_SYSTEM_NAME" : " Linux" ,
3738 "VCPKG_TARGET_TRIPLET" : " x64-linux"
3839 }
3940 },
41+ {
42+ "name" : " linux-x64-debug" ,
43+ "inherits" : " linux-x64" ,
44+ "description" : " Debug preset for x64 Linux" ,
45+ "cacheVariables" : {
46+ "CMAKE_BUILD_TYPE" : " Debug"
47+ }
48+ },
4049 {
4150 "name" : " linux-x64-release" ,
4251 "inherits" : " linux-x64" ,
8493 "targets" : [
8594 " all"
8695 ]
96+ },
97+ {
98+ "name" : " linux-x64-release" ,
99+ "configurePreset" : " linux-x64-release" ,
100+ "configuration" : " Release" ,
101+ "jobs" : 0 ,
102+ "targets" : [
103+ " all"
104+ ]
105+ },
106+ {
107+ "name" : " linux-x64-debug" ,
108+ "configurePreset" : " linux-x64-debug" ,
109+ "configuration" : " Debug" ,
110+ "jobs" : 0 ,
111+ "targets" : [
112+ " all"
113+ ]
87114 }
88115 ]
89116}
You can’t perform that action at this time.
0 commit comments