Skip to content

Commit eb41df1

Browse files
author
david.algis
committed
✨ Add support for sublime text
1 parent cad8bd7 commit eb41df1

File tree

4 files changed

+1012
-3
lines changed

4 files changed

+1012
-3
lines changed

Plugin/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Created by https://www.toptal.com/developers/gitignore/api/c++
22
# Edit at https://www.toptal.com/developers/gitignore?templates=c++
33

4+
# Remove compilation commands.json that are linked to path, they have to be regenerated with premake
5+
**/compile_commands.json*
6+
47
### C++ ###
58
# Prerequisites
69
*.d
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"folders":
3+
[
4+
{
5+
"path": "."
6+
}
7+
],
8+
"build_systems":
9+
[
10+
{
11+
"name": "PluginInteropUnity - Build",
12+
"cmd": ["MsBuild","PluginInteropUnity.sln","/t:build"],
13+
"working_dir": "${project_path:${folder}}",
14+
"encoding": "utf-8",
15+
},
16+
{
17+
"name": "PluginInteropUnity - Rebuild",
18+
"cmd": ["MsBuild","PluginInteropUnity.sln","/t:rebuild"],
19+
"working_dir": "${project_path:${folder}}",
20+
},
21+
{
22+
"name": "PluginInteropUnity - Clean",
23+
"cmd": ["MsBuild","PluginInteropUnity.sln","/t:clean"],
24+
"working_dir": "${project_path:${folder}}",
25+
"encoding": "utf-8",
26+
}
27+
28+
]
29+
}

0 commit comments

Comments
 (0)