-
Notifications
You must be signed in to change notification settings - Fork 0
/
heart.sublime-project
60 lines (56 loc) · 1.42 KB
/
heart.sublime-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"build_systems":
[
{
"cmd": [ "cmake", "--build", "D:\\dev\\heart\\", "--config", "Debug" ],
"name": "Build \"Heart Debug x64\"",
"selector": "source.c++",
"file_regex": "\\s*(.*?):(\\d+):(\\d+):\\s*(.*)",
},
{
"cmd": [ "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\IDE\\devenv.com", "C:\\Users\\James\\projects\\heart\\heart.sln", "/build", "Debug|x64"],
"name": "Build \"Heart Debug x64 VS\"",
"selector": "source.c++",
"file_regex": "\\d+>\\s*(.*)\\((\\d+),?\\d*\\)",
},
{
"cmd": [ "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\Common7\\IDE\\devenv.com", "C:\\Users\\James\\projects\\heart\\heart.sln", "/build", "RelWithDebInfo|x64"],
"name": "Build \"Heart RelWithDebugInfo x64 VS\"",
"selector": "source.c++",
"file_regex": "\\d+>\\s*(.*)\\((\\d+),?\\d*\\)",
},
{
"cmd":
[
"make"
],
"name": "Build \"Heart Release x64\"",
"selector": "source.c++",
"file_regex": "\\s*(.*?):(\\d+):(\\d+):\\s*(.*)",
"working_dir": "$project_path/int/cmake_release"
},
{
"cmd":
[
"make",
"clean"
],
"name": "Build \"Heart Release Clean\"",
"selector": "source.c++",
"file_regex": "\\s*(.*?):(\\d+):(\\d+):\\s*(.*)",
"working_dir": "$project_path/int/cmake_release"
},
],
"folders":
[
{
"folder_exclude_patterns":
[
"cmake64",
"cmake32"
],
"follow_symlinks": true,
"path": "."
},
],
}