Skip to content

Commit

Permalink
Create sublime project file
Browse files Browse the repository at this point in the history
  • Loading branch information
jurihock committed Dec 23, 2023
1 parent 5f9b717 commit 4870e28
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ cmake-build*/

.DS_Store
Thumbs.db

*.sublime-workspace
31 changes: 31 additions & 0 deletions StftPitchShiftPlugin.sublime-project
Original file line number Diff line number Diff line change
@@ -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}"
},
]
}

0 comments on commit 4870e28

Please sign in to comment.