Setup CI on gitlab

Co-authored-by: Joel Falcou <joel.falcou@lri.fr>

See merge request oss/rotgen!5
This commit is contained in:
Joel Falcou 2025-05-21 11:32:23 +02:00
parent 95ae1ef1e4
commit 7b395f6ad8
3 changed files with 113 additions and 1 deletions

55
CMakePresets.json Normal file
View file

@ -0,0 +1,55 @@
{
"version": 4,
"cmakeMinimumRequired": {
"major": 3,
"minor": 22,
"patch": 0
},
"configurePresets": [
{
"name": "clangd",
"displayName": "ClangD",
"description": "ClangD preset, provides compile_commands.json",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_LINKER_LAUNCHER": "clang++",
"CMAKE_C_LINKER_LAUNCHER": "clang"
}
},
{
"name": "release",
"displayName": "Release",
"description": "Release build",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/release",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
}
},
{
"name": "debug",
"inherits": "release",
"displayName": "Debug",
"description": "Debug build",
"binaryDir": "${sourceDir}/build/debug",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
}
],
"buildPresets": [
{
"name": "release",
"configurePreset": "release"
},
{
"name": "debug",
"configurePreset": "debug"
}
]
}