Skip to content

Commit 1ffb6c0

Browse files
committed
More components into a lib directory
1 parent 53e77a6 commit 1ffb6c0

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
build/
2-
lib/
3-
install/
1+
/build/
2+
/lib/
3+
/install/
44
tests/bin/
55
tests/src-gen/
6-
tests/include
6+
tests/include/

tests/src/TracePluginCustomCmake.lf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ target C {
1616
timeout: 5s,
1717
}
1818

19-
import Sensor, Processing, Actuator from "./Lib.lf"
19+
import Sensor, Processing, Actuator from "lib/Components.lf"
2020

2121
main reactor {
2222
s = new Sensor()

tests/src/TracePluginSystemPath.lf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ target C {
1313
timeout: 5s,
1414
}
1515

16-
import Sensor, Processing, Actuator from "./Lib.lf"
16+
import Sensor, Processing, Actuator from "lib/Components.lf"
1717

1818
main reactor {
1919
s = new Sensor()

tests/src/TracePluginUserPath.lf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ target C {
1414
timeout: 5s,
1515
}
1616

17-
import Sensor, Processing, Actuator from "./Lib.lf"
17+
import Sensor, Processing, Actuator from "lib/Components.lf"
1818

1919
main reactor {
2020
s = new Sensor()

0 commit comments

Comments
 (0)