File tree Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 1- zig- *
1+ .zig-cache
2+ zig-out
23private
34src /main.zig
Original file line number Diff line number Diff line change 1010- [x] Message
1111- [x] Bundle
1212
13- ** Server**
14-
15- - [ ] Methods
16- - [ ] Dispatch
17- - [ ] Pattern matching
18-
1913## Build
2014
2115See ` zig build -h ` for build options.
Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ pub fn build(b: *std.Build) void {
66
77 const lib = b .addStaticLibrary (.{
88 .name = "zigosc" ,
9- .root_source_file = .{ . path = "src/root.zig" } ,
9+ .root_source_file = b . path ( "src/root.zig" ) ,
1010 .target = target ,
1111 .optimize = optimize ,
1212 });
1313
1414 b .installArtifact (lib );
1515
1616 const lib_unit_tests = b .addTest (.{
17- .root_source_file = .{ . path = "src/root.zig" } ,
17+ .root_source_file = b . path ( "src/root.zig" ) ,
1818 .target = target ,
1919 .optimize = optimize ,
2020 });
You can’t perform that action at this time.
0 commit comments