-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpremake5.lua
More file actions
34 lines (27 loc) · 1.04 KB
/
premake5.lua
File metadata and controls
34 lines (27 loc) · 1.04 KB
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
27
28
29
30
31
32
33
34
include "Dependencies.lua"
workspace "HRealEngine"
architecture "x64"
configurations { "Debug", "Release", "Dist" }
startproject "HRealEngine Editor"
--solution_items{".editorconfig"}
flags{"MultiProcessorCompile"}
outputdir = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
filter "files:HRealEngine/vendor/**.c"
flags { "NoPCH" }
filter "files:HRealEngine/vendor/**.cpp"
flags { "NoPCH" }
group "Dependencies"
include "HRealEngine/vendor/GLFW"
include "HRealEngine/vendor/Glad"
include "HRealEngine/vendor/msdf-atlas-gen"
include "HRealEngine/vendor/imgui"
include "HRealEngine/vendor/yaml-cpp"
include "HRealEngine/vendor/Box2D"
include "HRealEngine/vendor/JoltPhysics"
include "HRealEngine/vendor/assimp"
include "HRealEngine/BehaviorTreeLibrary_premake5.lua"
group ""
include "HRealEngine"
include "HRealEngine Editor"
include "HRealEngine Runtime"
include "HRealEngine-ScriptCore"