diff options
author | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-08-15 20:24:20 +0200 |
---|---|---|
committer | erorcun <erorcunerorcun@hotmail.com.tr> | 2021-08-16 20:06:52 +0200 |
commit | e0ecbeee39e605cf2ee06e3632f4931d03606ce7 (patch) | |
tree | 36569421f31878d57a24cc3d279a2831f8173b04 /autoconf/autoconf.lua | |
parent | Fix impossible bullets & turn speed on heavy guns (diff) | |
download | re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar.gz re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar.bz2 re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar.lz re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar.xz re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.tar.zst re3-e0ecbeee39e605cf2ee06e3632f4931d03606ce7.zip |
Diffstat (limited to '')
-rw-r--r-- | autoconf/autoconf.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/autoconf/autoconf.lua b/autoconf/autoconf.lua new file mode 100644 index 00000000..6c99f9da --- /dev/null +++ b/autoconf/autoconf.lua @@ -0,0 +1,18 @@ +--- +-- Autoconfiguration. +-- Copyright (c) 2016 Blizzard Entertainment +--- + local p = premake + + if not premake.modules.autoconf then + p.modules.autoconf = {} + p.modules.autoconf._VERSION = p._VERSION + + verbosef('Loading autoconf module...') + include('api.lua') + include('msc.lua') + include('clang.lua') + include('gcc.lua') + end + + return p.modules.autoconf |