-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpremake5.lua
94 lines (73 loc) · 1.91 KB
/
premake5.lua
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
-- This file is only temporary until the MMake can generate a build system for itself.
-- Then using MMake it will pregenerate Visual Studio solution and gnu make files as a fallback.
require("Premake/Common")
require("Premake/Libs/CMakeInterpreter")
require("Premake/Libs/MMakeLib")
require("ThirdParty/CommonCLI/Premake/Libs/CommonCLI")
require("Premake/ThirdParty/fmt")
require("Premake/ThirdParty/Piccolo")
workspace("MMake")
common:setConfigsAndPlatforms()
common:addCoreDefines()
cdialect("C99")
cppdialect("C++20")
rtti("Off")
exceptionhandling("Off")
flags("MultiProcessorCompile")
if buildTests then
startproject("Tests")
else
startproject("MMake")
end
group("Dependencies")
project("CommonCLI")
location("ThirdParty/CommonCLI/")
warnings("Off")
libs.CommonCLI:setup()
location("ThirdParty/")
project("fmt")
location("ThirdParty/fmt/")
warnings("Off")
libs.fmt:setup()
location("ThirdParty/")
project("Piccolo")
location("ThirdParty/Piccolo/")
warnings("Off")
libs.Piccolo:setup()
location("ThirdParty/")
group("Libs")
project("CMakeInterpreter")
location("CMakeInterpreter/")
warnings("Extra")
libs.CMakeInterpreter:setup()
libs.fmt:setupDep()
project("MMakeLib")
location("MMakeLib/")
warnings("Extra")
libs.MMakeLib:setup()
libs.fmt:setupDep()
group("MMake")
project("MMake")
location("MMake/")
kind("ConsoleApp")
warnings("Extra")
common:outDirs()
common:debugDir()
includedirs({ "%{prj.location}/Src/" })
libs.MMakeLib:setupDep()
files({ "%{prj.location}/Src/**" })
removefiles({ "*.DS_Store" })
group("Tests")
project("Tests")
location("%{wks.location}/Tests/")
kind("ConsoleApp")
warnings("Extra")
common:outDirs()
common:debugDir()
libs.MMakeLib:setupDep()
includedirs({ "%{prj.location}/Src/" })
files({
"%{prj.location}/Run/**",
"%{prj.location}/Src/**"
})
removefiles({ "*.DS_Store" })