Skip to content

Commit

Permalink
Added build file.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jazzer360 committed Sep 29, 2015
1 parent e12be3f commit 32412fa
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 32412fa

Please sign in to comment.