mirror of
https://github.com/QIDITECH/QIDISlicer.git
synced 2026-01-30 23:48:44 +03:00
PRUSA 2.7.0
This commit is contained in:
57
deps/CMakePresets.json
vendored
Normal file
57
deps/CMakePresets.json
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"version": 3,
|
||||
"configurePresets": [
|
||||
{
|
||||
"name": "default",
|
||||
"displayName": "Default Config",
|
||||
"description": "Default build for any desktop OS",
|
||||
"binaryDir": "${sourceDir}/build-default",
|
||||
"condition": {
|
||||
"type": "const",
|
||||
"value": true
|
||||
},
|
||||
"cacheVariables": {
|
||||
"CMAKE_BUILD_TYPE": "Release",
|
||||
"DEP_WX_GTK3": true,
|
||||
"DEP_DOWNLOAD_DIR": {
|
||||
"type": "PATH",
|
||||
"value": "${sourceDir}/.pkg_cache"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "no-occt",
|
||||
"inherits": "default",
|
||||
"binaryDir": "${sourceDir}/build-no-occt",
|
||||
"cacheVariables": {
|
||||
"PrusaSlicer_deps_PACKAGE_EXCLUDES": "OCCT"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mac_universal_x86",
|
||||
"inherits": "default",
|
||||
"binaryDir": "${sourceDir}/build-x86_64",
|
||||
"condition": {
|
||||
"type": "equals",
|
||||
"lhs": "${hostSystemName}",
|
||||
"rhs": "Darwin"
|
||||
},
|
||||
"cacheVariables": {
|
||||
"CMAKE_OSX_ARCHITECTURES": "x86_64"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "mac_universal_arm",
|
||||
"inherits": "default",
|
||||
"binaryDir": "${sourceDir}/build-arm64",
|
||||
"condition": {
|
||||
"type": "equals",
|
||||
"lhs": "${hostSystemName}",
|
||||
"rhs": "Darwin"
|
||||
},
|
||||
"cacheVariables": {
|
||||
"CMAKE_OSX_ARCHITECTURES": "arm64"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user