aboutsummaryrefslogtreecommitdiff
path: root/examples/intellij/build/build.scala
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-04-06 10:56:42 -0400
committerGitHub <noreply@github.com>2017-04-06 10:56:42 -0400
commit16ac805f1a3669b3bcca160e523e3d8cf4c7cc2b (patch)
tree686727fc21107b7ea66f1f7efa883e32994dfbb1 /examples/intellij/build/build.scala
parent2f6aaac52ac0b6afabf83ed8bd75cf5ea72ee78f (diff)
parent34f3d10608d6f11deb90979066d69d31b7a8fe4f (diff)
downloadcbt-16ac805f1a3669b3bcca160e523e3d8cf4c7cc2b.tar.gz
cbt-16ac805f1a3669b3bcca160e523e3d8cf4c7cc2b.tar.bz2
cbt-16ac805f1a3669b3bcca160e523e3d8cf4c7cc2b.zip
Merge pull request #416 from cvogt/idea-plugin
Add IntelliJ IDEA project generator plugin
Diffstat (limited to 'examples/intellij/build/build.scala')
-rw-r--r--examples/intellij/build/build.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/intellij/build/build.scala b/examples/intellij/build/build.scala
new file mode 100644
index 0000000..921cf40
--- /dev/null
+++ b/examples/intellij/build/build.scala
@@ -0,0 +1,5 @@
+import cbt._
+
+class Build(val context: Context) extends BaseBuild with IntelliJ {
+ override def name = "idea-plugin-example"
+}