first commit
This commit is contained in:
commit
7dd9dd689e
40 changed files with 4100 additions and 0 deletions
27
CMakePresets.json
Normal file
27
CMakePresets.json
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"version": 3,
|
||||
"configurePresets": [
|
||||
{
|
||||
"name": "mingw-debug",
|
||||
"displayName": "MinGW Makefiles Debug",
|
||||
"generator": "MinGW Makefiles",
|
||||
"binaryDir": "${sourceDir}/build/mingw-debug",
|
||||
"cacheVariables": {
|
||||
"CMAKE_BUILD_TYPE": "Debug",
|
||||
"CMAKE_C_COMPILER": "C:/msys64/mingw64/bin/gcc.exe",
|
||||
"CMAKE_CXX_COMPILER": "C:/msys64/mingw64/bin/g++.exe"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mingw-release",
|
||||
"displayName": "MinGW Makefiles Release",
|
||||
"generator": "MinGW Makefiles",
|
||||
"binaryDir": "${sourceDir}/build/mingw-release",
|
||||
"cacheVariables": {
|
||||
"CMAKE_BUILD_TYPE": "Release",
|
||||
"CMAKE_C_COMPILER": "C:/msys64/mingw64/bin/gcc.exe",
|
||||
"CMAKE_CXX_COMPILER": "C:/msys64/mingw64/bin/g++.exe"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue