- Moved premake5 Windows builds to BuildScripts/Windows
- Renamed premake5.lua files build.lua
This commit is contained in:
Light 2021-07-23 10:33:51 +04:30
parent 9701b08cc3
commit 0d28451010
8 changed files with 6 additions and 6 deletions

View file

@ -0,0 +1,2 @@
premake5 vs2019 --file=../build.lua
PAUSE

View file

@ -1,6 +1,6 @@
workspace "Light"
location "../"
startproject "Sandbox"
startproject "Mirror"
architecture "x64"
@ -16,9 +16,9 @@ dependenciesdir = "%{wks.location}/Dependencies/"
outputdir = "%{cfg.buildcfg}/%{cfg.system}/%{cfg.architecture}/%{prj.name}"
-- Projects --
include "../Engine/"
include "../Mirror/"
include "../Sandbox/"
include "../Engine/build.lua"
include "../Mirror/build.lua"
include "../Sandbox/build.lua"
-- Dependencies --
group "Dependencies"

View file

@ -1,2 +0,0 @@
premake5.exe vs2019
PAUSE