From 4870e28df78aea420bc7b2507c3b74400bda7847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Hock?= Date: Sat, 23 Dec 2023 15:31:14 +0100 Subject: [PATCH] Create sublime project file --- .gitignore | 2 ++ StftPitchShiftPlugin.sublime-project | 31 ++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 StftPitchShiftPlugin.sublime-project diff --git a/.gitignore b/.gitignore index 10ebd2d..fadd6bf 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ cmake-build*/ .DS_Store Thumbs.db + +*.sublime-workspace diff --git a/StftPitchShiftPlugin.sublime-project b/StftPitchShiftPlugin.sublime-project new file mode 100644 index 0000000..8cab173 --- /dev/null +++ b/StftPitchShiftPlugin.sublime-project @@ -0,0 +1,31 @@ +{ + "folders": + [ + { + "path": "." + } + ], + "build_systems": + [ + { + "name": "App (debug)", + "shell_cmd": "make CONFIG=Debug build app", + "working_dir": "${project_path}" + }, + { + "name": "App (release)", + "shell_cmd": "make CONFIG=Release build app", + "working_dir": "${project_path}" + }, + { + "name": "Test (debug)", + "shell_cmd": "make CONFIG=Debug build test", + "working_dir": "${project_path}" + }, + { + "name": "Test (release)", + "shell_cmd": "make CONFIG=Release build test", + "working_dir": "${project_path}" + }, + ] +}