You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
467 B
Plaintext

#run {
w := compiler_create_workspace();
bo := get_build_options(w);
bo.output_executable_name = "droplets";
import_paths: [..]string;
for bo.import_path array_add(*import_paths, it);
array_add(*import_paths, "libs");
bo.import_path = import_paths;
set_build_options(bo, w);
add_build_file("main.jai", w);
add_build_file("ring.jai", w);
set_build_options_dc(.{do_output=false});
}
#import "Basic";
#import "Compiler";