21 lines
395 B
Text
21 lines
395 B
Text
#module_parameters(RUN_TESTS := false);
|
|
|
|
#load "base.jai";
|
|
#load "utils.jai";
|
|
#load "memory.jai";
|
|
#load "macros.jai";
|
|
#load "array.jai";
|
|
|
|
|
|
#scope_module;
|
|
|
|
basic :: #import "Basic";
|
|
compiler :: #import "Compiler";
|
|
|
|
#if RUN_TESTS {
|
|
#run compiler.set_build_options_dc(.{ do_output = false });
|
|
|
|
test :: #import,file "test/module.jai";
|
|
#import,file "./encoding/module.jai"(RUN_TESTS);
|
|
}
|
|
|