From 859e95eea813b73be6eeef92bb9e5127bcfdb923 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Mon, 12 Sep 2022 19:57:10 +0200 Subject: [PATCH] bam.lua: Set custom compiler functions. --- bam.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bam.lua b/bam.lua index 8cf94db..3f6a260 100644 --- a/bam.lua +++ b/bam.lua @@ -6,6 +6,7 @@ Import(".bam/path.lua") Import(".bam/utils.lua") Import(".bam/functions.lua") +Import(".bam/compilers.lua") CheckVersion("0.5") -------------------------------- @@ -57,6 +58,10 @@ if ScriptArgs.type ~= nil and ScriptArgs.type:match("^release") then end +-- Compilers +-------------------------------- +SetCompilers(global_settings) + -- Output configuration --------------------------------