doc: renamed project
This commit is contained in:
committed by
Sylvan Arnold
parent
244e516bd8
commit
32618389d1
131
pico-sensor/CMakePresets.json
Normal file
131
pico-sensor/CMakePresets.json
Normal file
@@ -0,0 +1,131 @@
|
||||
{
|
||||
"version": 6,
|
||||
"cmakeMinimumRequired":
|
||||
{
|
||||
"major": 3,
|
||||
"minor": 28,
|
||||
"patch": 0
|
||||
},
|
||||
"configurePresets":
|
||||
[
|
||||
{
|
||||
"name": "default",
|
||||
"displayName": "Default Config",
|
||||
"hidden": true,
|
||||
"description": "Default build using Ninja generator",
|
||||
"generator": "Ninja",
|
||||
"binaryDir": "${sourceDir}/build/${presetName}",
|
||||
"toolchainFile": "$env{PICO_SDK_PATH}/cmake/preload/toolchains/pico_arm_cortex_m0plus_gcc.cmake"
|
||||
},
|
||||
{
|
||||
"name": "Debug",
|
||||
"inherits": "default",
|
||||
"displayName": "Debug",
|
||||
"description": "Debug Configuration",
|
||||
"cacheVariables":
|
||||
{
|
||||
"CMAKE_BUILD_TYPE": "Debug",
|
||||
"ENABLE_UNIT_TESTING": "OFF"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Test",
|
||||
"displayName": "Test",
|
||||
"description": "Configuration with tests enabled",
|
||||
"inherits": "default",
|
||||
"cacheVariables":
|
||||
{
|
||||
"CMAKE_BUILD_TYPE": "Debug",
|
||||
"ENABLE_UNIT_TESTING": "ON"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Release",
|
||||
"inherits": "default",
|
||||
"displayName": "Release",
|
||||
"description": "Release Configuration",
|
||||
"cacheVariables":
|
||||
{
|
||||
"CMAKE_BUILD_TYPE": "Release",
|
||||
"ENABLE_UNIT_TESTING": "OFF"
|
||||
}
|
||||
}
|
||||
],
|
||||
"buildPresets":
|
||||
[
|
||||
{
|
||||
"name": "default",
|
||||
"hidden": true,
|
||||
"displayName": "default build",
|
||||
"configurePreset": "default"
|
||||
},
|
||||
{
|
||||
"name": "app-debug",
|
||||
"displayName": "debug build",
|
||||
"configurePreset": "Debug",
|
||||
"configuration": "Debug"
|
||||
},
|
||||
{
|
||||
"name": "app-release",
|
||||
"displayName": "release build",
|
||||
"configurePreset": "Release",
|
||||
"configuration": "Release"
|
||||
},
|
||||
{
|
||||
"name": "app-test",
|
||||
"displayName": "test build",
|
||||
"configurePreset": "Test",
|
||||
"configuration": "Test"
|
||||
}
|
||||
],
|
||||
"testPresets":
|
||||
[
|
||||
{
|
||||
"name": "Test",
|
||||
"description": "test preset",
|
||||
"displayName": "test preset",
|
||||
"configurePreset": "Test"
|
||||
}
|
||||
],
|
||||
"packagePresets":
|
||||
[
|
||||
{
|
||||
"name": "default",
|
||||
"displayName": "default package preset",
|
||||
"configurePreset": "default",
|
||||
"generators":
|
||||
[
|
||||
"TGZ"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "releasePackage",
|
||||
"description": "",
|
||||
"displayName": "",
|
||||
"configurePreset": "Release"
|
||||
}
|
||||
],
|
||||
"workflowPresets":
|
||||
[
|
||||
{
|
||||
"name": "workflow",
|
||||
"description": "run test",
|
||||
"displayName": "testing",
|
||||
"steps":
|
||||
[
|
||||
{
|
||||
"type": "configure",
|
||||
"name": "Test"
|
||||
},
|
||||
{
|
||||
"type": "build",
|
||||
"name": "app-test"
|
||||
},
|
||||
{
|
||||
"type": "test",
|
||||
"name": "Test"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user