fencer/Build.lua

25 lines
501 B
Lua

workspace "Fencer-Template"
architecture "x64"
configurations { "Debug", "Release", "Dist" }
startproject "Game"
filter "system:windows"
buildoptions { "/EHsc", "/Zc:preprocessor" }
OutputDir = "%{cfg.system}-%{cfg.architecture}/${cfg.buildcfg}"
group "Core"
include "core/Build-Core.lua"
group ""
libdirs {
os.findlib("SDL2"),
os.findlib("SDL2_image"),
os.findlib("SDL2_ttf"),
os.findlib("m"),
os.findlib("cJSON")
}
include "game/Build-Game.lua"