-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpremake5.lua
More file actions
32 lines (26 loc) · 789 Bytes
/
Copy pathpremake5.lua
File metadata and controls
32 lines (26 loc) · 789 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
27
28
29
30
31
32
require "vendor/premake-qt/qt"
require "scripts/project"
require "scripts/clear"
workspace "buddy"
architecture "x64"
configurations {
"Debug",
"Release"
}
flags {
"MultiProcessorCompile"
}
startproject "buddy"
output_path = "%{cfg.buildcfg}-%{cfg.system}-%{cfg.architecture}"
binaries_path = "%{wks.location}/build/bin/" .. "%{output_path}"
intermediate_path = "%{wks.location}/build/intermediate/" .. "%{output_path}"
vendor_path = "%{wks.location}/vendor/"
group "dependencies"
include "vendor/dependencies.lua"
include "vendor/qass.lua"
group ""
group "buddy"
include "buddy-core/buddy-core.lua"
include "buddy-gui/buddy-gui.lua"
include "buddy/buddy.lua"
group ""