light/BuildScripts/premake5.lua

26 lines
453 B
Lua
Raw Normal View History

2021-05-20 11:49:24 +04:30
workspace "Light"
location "../"
startproject "Sandbox"
architecture "x64"
configurations
{
"Debug",
"Release",
"Distribution",
}
-- Directories --
2021-05-21 10:55:39 +04:30
dependenciesdir = "%{wks.location}/Dependencies/"
2021-05-20 11:49:24 +04:30
outputdir = "%{cfg.buildcfg}/%{cfg.system}/%{cfg.architecture}/%{prj.name}"
-- Projects --
include "../Sandbox/"
2021-05-21 15:00:29 +04:30
include "../Engine/"
2021-05-25 21:22:01 +04:30
-- Dependencies --
2021-05-21 15:00:29 +04:30
group "Dependencies"
2021-05-25 21:22:01 +04:30
include "../Dependencies/GLFW/"
include "../Dependencies/GLAD/"