-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'cmake-presets' into 'master'
Add CMake presets for common use cases See merge request integer/scip!3569
- Loading branch information
Showing
3 changed files
with
57 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"version": 3, | ||
"configurePresets": [ | ||
{ | ||
"name": "autobuild", | ||
"description": "Autobuild configuration, tries to enable as many features as possible", | ||
"cacheVariables": { | ||
"AUTOBUILD": "On" | ||
} | ||
}, | ||
{ | ||
"name": "mip", | ||
"description": "Default configuration for compiling SCIP as a MIP solver (requires LP solver selected with LPS)", | ||
"cacheVariables": { | ||
"AUTOBUILD": "Off", | ||
"IPOPT": "Off", | ||
"PAPILO": "On", | ||
"SYM": "snauty" | ||
} | ||
}, | ||
{ | ||
"name": "minimal", | ||
"description": "Minimal built-in configuration", | ||
"cacheVariables": { | ||
"AUTOBUILD": "Off", | ||
"IPOPT": "Off", | ||
"PAPILO": "Off", | ||
"ZIMPL": "Off", | ||
"READLINE": "Off", | ||
"ZLIB": "Off", | ||
"GMP": "Off", | ||
"LPS": "none" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters