Skip to content

Commit 3a164e7

Browse files
Richard WhalingRichard Whaling
authored andcommitted
initial port to 0.4
1 parent a05f3bb commit 3a164e7

File tree

17 files changed

+706
-1039
lines changed

17 files changed

+706
-1039
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
target/
2+
*/target/
3+
project/project
4+
examples/*/target
5+
lowered.hnir

build.sbt

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
lazy val commonSettings = Seq(
22
organization := "dev.whaling",
3-
version := "preview",
4-
scalaVersion := "2.11.12",
5-
libraryDependencies += "io.argonaut" % "argonaut_native0.3_2.11" % "6.2.3"
3+
version := "0.1-SNAPSHOT",
4+
scalaVersion := "2.11.12"
65
)
76

87
lazy val core = (project in file("core"))
@@ -24,12 +23,22 @@ lazy val server = (project in file("server"))
2423
.enablePlugins(ScalaNativePlugin)
2524
.dependsOn(core)
2625

27-
lazy val serverExample = (project in file("server-example"))
26+
lazy val serverExample = (project in file("examples/server"))
2827
.settings(commonSettings:_*)
2928
.enablePlugins(ScalaNativePlugin)
3029
.dependsOn(core,server,client)
3130

32-
lazy val pipeExample = (project in file("pipe-example"))
31+
lazy val pipeExample = (project in file("examples/pipe"))
3332
.settings(commonSettings:_*)
3433
.enablePlugins(ScalaNativePlugin)
3534
.dependsOn(core,pipe,client)
35+
36+
lazy val curlExample = (project in file("examples/curl"))
37+
.settings(commonSettings:_*)
38+
.enablePlugins(ScalaNativePlugin)
39+
.dependsOn(core,client)
40+
41+
lazy val timerExample = (project in file("examples/timer"))
42+
.settings(commonSettings:_*)
43+
.enablePlugins(ScalaNativePlugin)
44+
.dependsOn(core)

0 commit comments

Comments
 (0)