aboutsummaryrefslogtreecommitdiffstats
path: root/CMakePresets.json
diff options
context:
space:
mode:
authordeeedob <dennis.ob@protonmail.com>2024-04-04 13:02:41 +0200
committerdeeedob <dennis.ob@protonmail.com>2024-04-04 14:13:12 +0200
commit516c788d451c7c5d3d1fd3eb04171e21e7026628 (patch)
tree8cf6b0d26f7eb260fc53ac39006c6e7ab688a802 /CMakePresets.json
Long Live QtCleverAudioPlugin!HEADdev
Create Qt user interfaces for the CLAP audio plugin standard. Import the repository to continue development on it. This version is the proof-of-concept implementation, as highlighted in my thesis. It is feature incomplete but already preserves this initial work whilst a rewrite is on its way.
Diffstat (limited to 'CMakePresets.json')
-rw-r--r--CMakePresets.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/CMakePresets.json b/CMakePresets.json
new file mode 100644
index 0000000..2967a90
--- /dev/null
+++ b/CMakePresets.json
@@ -0,0 +1,25 @@
+{
+ "version": 6,
+ "configurePresets": [
+ {
+ "name": "debug",
+ "description": "Debug Build",
+ "generator": "Ninja",
+ "binaryDir": "${sourceDir}/build/debug",
+ "cacheVariables": {
+ "CMAKE_BUILD_TYPE": "Debug",
+ "COMPILE_WARNINGS_AS_ERRORS": false,
+ "clap-remote_BUILD_TESTS": false
+ }
+ },
+ {
+ "name": "release",
+ "description": "Release Build",
+ "generator": "Ninja",
+ "binaryDir": "${sourceDir}/build/release",
+ "cacheVariables": {
+ "CMAKE_BUILD_TYPE": "Release"
+ }
+ }
+ ]
+}