-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some CMake presets for Linux...
- Loading branch information
1 parent
d0ab195
commit 4026ebc
Showing
9 changed files
with
587 additions
and
53 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
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,73 @@ | ||
{ | ||
"version": 6, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 23, | ||
"patch": 0 | ||
}, | ||
"include": [ | ||
"./share/cmake/Presets/Linux/LinuxCMakePresets.json" | ||
], | ||
"vendor": {}, | ||
"configurePresets": [ | ||
{ | ||
"name": "default", | ||
"hidden": true, | ||
"displayName": "Default Config", | ||
"description": "Default build using Ninja generator", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/Builds", | ||
"cacheVariables": { | ||
"STONEYDSP_BIQUADS_BUILD_TESTS": { "type": "BOOL", "value": "OFF" } | ||
} | ||
}, | ||
{ | ||
"name": "ninja-multi-config", | ||
"hidden": true, | ||
"inherits": "default", | ||
"displayName": "Ninja Multi-Config", | ||
"description": "Default build using Ninja Multi-Config generator", | ||
"generator": "Ninja Multi-Config" | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "default", | ||
"displayName": "Default", | ||
"verbose": false, | ||
"description": "An empty preset that does not add any arguments", | ||
"targets": [ | ||
"all", | ||
"install", | ||
"clean", | ||
"juce_vst3_helper", | ||
"Biquads_Audio_Plugin_Dependencies", | ||
"Biquads_Audio_Plugin_Library", | ||
"Biquads_Audio_Plugin", | ||
"Biquads_Audio_Plugin_Standalone", | ||
"Biquads_Audio_Plugin_VST3", | ||
"Biquads_Audio_Plugin_All" | ||
] | ||
}, | ||
{ | ||
"name": "verbose", | ||
"displayName": "Verbose", | ||
"description": "An verbose preset that does not add any arguments", | ||
"verbose": true, | ||
"inherits": "default" | ||
} | ||
], | ||
"testPresets": [ | ||
{ | ||
"name": "default", | ||
"configurePreset": "default", | ||
"output": { | ||
"outputOnFailure": true | ||
}, | ||
"execution": { | ||
"noTestsAction": "error", | ||
"stopOnFailure": true | ||
} | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
1.2.3.155 | ||
1.2.3.156 |
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
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,132 @@ | ||
{ | ||
"version": 6, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 23, | ||
"patch": 0 | ||
}, | ||
"include": [ | ||
], | ||
"configurePresets": [ | ||
{ | ||
"name": "default", | ||
"hidden": true, | ||
"displayName": "Default Config", | ||
"description": "Default build using Ninja generator", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/Builds", | ||
"cacheVariables": { | ||
"FIRST_CACHE_VARIABLE": { | ||
"type": "BOOL", | ||
"value": "OFF" | ||
}, | ||
"SECOND_CACHE_VARIABLE": "ON" | ||
}, | ||
"environment": { | ||
"MY_ENVIRONMENT_VARIABLE": "Test", | ||
"PATH": "$env{HOME}/ninja/bin:$penv{PATH}" | ||
}, | ||
"vendor": { | ||
"example.com/ExampleIDE/1.0": { | ||
"autoFormat": true | ||
} | ||
} | ||
}, | ||
{ | ||
"name": "ninja-multi", | ||
"inherits": "default", | ||
"displayName": "Ninja Multi-Config", | ||
"description": "Default build using Ninja Multi-Config generator", | ||
"generator": "Ninja Multi-Config" | ||
}, | ||
{ | ||
"name": "windows-only", | ||
"inherits": "default", | ||
"displayName": "Windows-only configuration", | ||
"description": "This build is only available on Windows", | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Windows" | ||
} | ||
}, | ||
{ | ||
"name": "linux-only", | ||
"inherits": "default", | ||
"displayName": "Linux-only configuration", | ||
"description": "This build is only available on Linux", | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Linux" | ||
} | ||
}, | ||
{ | ||
"name": "darwin-only", | ||
"inherits": "default", | ||
"displayName": "Darwin-only configuration", | ||
"description": "This build is only available on Darwin", | ||
"condition": { | ||
"type": "equals", | ||
"lhs": "${hostSystemName}", | ||
"rhs": "Darwin" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "default", | ||
"configurePreset": "default" | ||
} | ||
], | ||
"testPresets": [ | ||
{ | ||
"name": "default", | ||
"configurePreset": "default", | ||
"output": { | ||
"outputOnFailure": true | ||
}, | ||
"execution": { | ||
"noTestsAction": "error", | ||
"stopOnFailure": true | ||
} | ||
} | ||
], | ||
"packagePresets": [ | ||
{ | ||
"name": "default", | ||
"configurePreset": "default", | ||
"generators": [ | ||
"TGZ" | ||
] | ||
} | ||
], | ||
"workflowPresets": [ | ||
{ | ||
"name": "default", | ||
"steps": [ | ||
{ | ||
"type": "configure", | ||
"name": "default" | ||
}, | ||
{ | ||
"type": "build", | ||
"name": "default" | ||
}, | ||
{ | ||
"type": "test", | ||
"name": "default" | ||
}, | ||
{ | ||
"type": "package", | ||
"name": "default" | ||
} | ||
] | ||
} | ||
], | ||
"vendor": { | ||
"example.com/ExampleIDE/1.0": { | ||
"autoFormat": false | ||
} | ||
} | ||
} |
Oops, something went wrong.