refactor: change default_cursor config option to an enum
This commit is contained in:
parent
5a6c010e58
commit
4cfe6adadd
4 changed files with 16 additions and 15 deletions
|
|
@ -509,6 +509,7 @@ pub fn build_exe(
|
|||
.{ .name = "thespian", .module = thespian_mod },
|
||||
.{ .name = "log", .module = log_mod },
|
||||
.{ .name = "Buffer", .module = Buffer_mod },
|
||||
.{ .name = "config", .module = config_mod },
|
||||
},
|
||||
});
|
||||
|
||||
|
|
@ -527,6 +528,7 @@ pub fn build_exe(
|
|||
tests.root_module.addImport("thespian", thespian_mod);
|
||||
tests.root_module.addImport("log", log_mod);
|
||||
tests.root_module.addImport("Buffer", Buffer_mod);
|
||||
tests.root_module.addImport("config", config_mod);
|
||||
// b.installArtifact(tests);
|
||||
break :blk b.addRunArtifact(tests);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue