aboutsummaryrefslogtreecommitdiff
path: root/project/MavigatorBuild.scala
diff options
context:
space:
mode:
Diffstat (limited to 'project/MavigatorBuild.scala')
-rw-r--r--project/MavigatorBuild.scala16
1 files changed, 4 insertions, 12 deletions
diff --git a/project/MavigatorBuild.scala b/project/MavigatorBuild.scala
index 61a8f75..e46d5f2 100644
--- a/project/MavigatorBuild.scala
+++ b/project/MavigatorBuild.scala
@@ -16,7 +16,7 @@ object MavigatorBuild extends Build {
lazy val root = Project(
id = "root",
base = file("."),
- aggregate = Seq(bindings, uav, server, dashboard)
+ aggregate = Seq(bindings, uav, server, cockpit)
)
// empty project that uses SbtMavlink to generate protocol bindings
@@ -40,18 +40,10 @@ object MavigatorBuild extends Build {
)
// main cockpit front-end
- lazy val dashboard = Project(
- id = "mavigator-dashboard",
- base = file("mavigator-dashboard"),
+ lazy val cockpit = Project(
+ id = "mavigator-cockpit",
+ base = file("mavigator-cockpit"),
dependencies = Seq(bindings)
)
- /*
- // landing page providing selection of drone
- lazy val index = Project(
- id = "mavigator-index",
- base = file("mavigator-index"),
- dependencies = Seq(bindings)
- )
- */
}