Начало проекта wayland

This commit is contained in:
Пытков Роман
2025-09-24 02:05:38 +03:00
parent 17096efe0f
commit 1698b43da6
7 changed files with 122 additions and 0 deletions

25
wayland/CMakePresets.json Normal file
View File

@@ -0,0 +1,25 @@
{
"version": 8,
"configurePresets": [
{
"name": "debug-gcc",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_C_COMPILER": "/usr/bin/gcc",
"CMAKE_CXX_COMPILER": "/usr/bin/g++",
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "release-gcc",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_C_COMPILER": "/usr/bin/gcc",
"CMAKE_CXX_COMPILER": "/usr/bin/g++",
"CMAKE_BUILD_TYPE": "Release"
}
}
]
}