Skip to content

Commit

Permalink
Merge pull request vkostyukov#14 from shubhamaggarwal/master
Browse files Browse the repository at this point in the history
Add build system
  • Loading branch information
vkostyukov authored Jul 19, 2017
2 parents 02d76dd + 3e00953 commit 4612f71
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Kotlin.sublime-build
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"path" : "/usr/local/bin:$PATH",
"selector" : "source.Kotlin",
"cmd" : "kotlinc \"${file}\" -include-runtime -d ${file_base_name}.jar",
"variants": [{
"cmd": "kotlinc \"${file}\" -include-runtime -d ${file_base_name}.jar",
"name": "Compile"
},{
"name": "Run",
"cmd": "java -jar ${file_base_name}.jar"
}],
"shell" : "true",
"windows" : {
"path" : "$PATH"
}
}

0 comments on commit 4612f71

Please sign in to comment.