-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
26 lines (22 loc) · 754 Bytes
/
Copy pathpremake5.lua
File metadata and controls
26 lines (22 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
-- =====================================================================
-- Lumora — standalone workspace
--
-- This builds the engine plus LumoraApp (the engine's own dev harness:
-- Glimmer / Sandbox demos). Consumer projects do NOT use this file —
-- they declare their own workspace and `include "Lumora/LumoraProjects.lua"`.
-- =====================================================================
workspace "Lumora"
architecture "x64"
startproject "LumoraApp"
configurations
{
"Debug",
"Release",
"Dist"
}
-- Engine + all dependency projects (also defines `outdir` and LinkLumora()).
include "LumoraProjects.lua"
-- The engine's own test application.
group "App"
include "LumoraApp"
group ""