Skip to content

Commit

Permalink
Merge pull request #4 from Jazzer360/master
Browse files Browse the repository at this point in the history
Added build file.
  • Loading branch information
vihangm committed Sep 29, 2015
2 parents e12be3f + 32412fa commit 2dbc77a
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions Protocol Buffer.sublime-build
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"cmd": [
"protoc",
"-I=$file_path",
"--cpp_out=$file_path",
"--java_out=$file_path",
"--python_out=$file_path",
"$file"
],
"selector": "source.proto",
"variants": [
{
"name": "C++",
"cmd": [
"protoc",
"-I=$file_path",
"--cpp_out=$file_path",
"$file"
]
},
{
"name": "Java",
"cmd": [
"protoc",
"-I=$file_path",
"--java_out=$file_path",
"$file"
]
},
{
"name": "Python",
"cmd": [
"protoc",
"-I=$file_path",
"--python_out=$file_path",
"$file"
]
}
]
}

0 comments on commit 2dbc77a

Please sign in to comment.