Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
sabudilovskiy committed Oct 5, 2024
1 parent 35ad341 commit 51eec59
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions scripts/presets_ubuntu-24.04.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"version": 5,
"configurePresets": [
{
"name": "clang_19_debug",
"displayName": "clang 19 debug",
"generator": "Ninja",
"binaryDir": "cmake_build",
"cacheVariables": {
"CMAKE_C_COMPILER": "clang-19",
"CMAKE_CXX_COMPILER": "clang++-19",
"CMAKE_CXX_COMPILER_LAUNCHER": "ccache",
"CMAKE_CXX_STANDARD": "20",
"CMAKE_LINKER_TYPE": "LLD",
"CMAKE_BUILD_TYPE": "Debug",
"TGBM_ENABLE_TESTS": "ON",
"CMAKE_CXX_FLAGS": "-nostdinc++ -I/usr/include/c++/13 -I/usr/include/x86_64-linux-gnu/c++/13",
"CMAKE_EXE_LINKER_FLAGS":"-L/usr/lib/gcc/x86_64-linux-gnu/13"
}
},
{
"name": "gcc_14_debug",
"generator": "Ninja",
"displayName": "gcc 14 debug",
"binaryDir": "cmake_build",
"cacheVariables": {
"CMAKE_C_COMPILER": "gcc-14",
"CMAKE_CXX_COMPILER": "g++-14",
"CMAKE_CXX_COMPILER_LAUNCHER": "ccache",
"CMAKE_CXX_STANDARD": "20",
"CMAKE_LINKER_TYPE": "LLD",
"CMAKE_BUILD_TYPE": "Debug",
"TGBM_ENABLE_TESTS": "ON"
}
}
]
}

0 comments on commit 51eec59

Please sign in to comment.