-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpremake5.lua
220 lines (180 loc) · 5 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
------------------------------
-- Global Variable
------------------------------
-- Prefix Install specify where it should look for custom
-- project header & library files
if G_Install == nil then
G_Install = {}
-- Default Value on Windows & Unix Platform
if os.is("windows") then
G_Install.Root = "C:/Premake/"
else
G_Install.Root = "/usr/local/"
end
end
if not G_Install.Header then G_Install.Header = G_Install.Root.."include" end
if not G_Install.Lib then G_Install.Lib = G_Install.Root.."lib" end
if SolutionRoot == nil then
SolutionRoot = os.getcwd()
end
------------------------------
-- Solution
------------------------------
solution "Haize"
if _OPTIONS["unittests"] then
startproject "Haize_UnitTests"
else
startproject "Haize_Executable"
end
configurations { "DebugDLL", "DebugLib", "ReleaseLib", "ReleaseDLL", "FinalLib", "FinalDLL" }
implibdir "bin/lib"
if os.is("windows") then
buildoptions { "" }
else
buildoptions { "--std=c++11" }
end
-- If option exists, then override G_Install
if _OPTIONS["installdir"] then
G_Install.Root = _OPTIONS["installdir"]
G_Install.Header = _OPTIONS["installdir"].."/include"
G_Install.Lib = _OPTIONS["installdir"].."/bin/lib"
print("Base directory has been overwritten to '"..G_Install.Root.."'")
end
includedirs {
SolutionRoot.."/include",
G_Install.Header,
}
-- Add external include
if _OPTIONS["buildmuon"] then
includedirs { SolutionRoot.."/extern/Muon/include" }
end
libdirs {
SolutionRoot.."/bin/lib",
G_Install.Lib
}
flags {
"NoImplicitLink",
"NoIncrementalLink",
"NoEditAndContinue",
}
filter "Debug*"
targetsuffix "-d"
optimize "Debug"
flags { "Symbols" }
defines { "HAIZE_DEBUG"}
if _OPTIONS["buildmuon"] then defines { "MUON_DEBUG" } end
filter "Release*"
targetsuffix "-r"
optimize "Speed"
flags { "Symbols" }
filter "Final*"
targetsuffix "-f"
optimize "Full"
flags { "LinkTimeOptimization" }
filter "*Lib"
kind "StaticLib"
flags { "StaticRuntime" }
defines { "HAIZE_STATIC" }
if _OPTIONS["buildmuon"] then defines { "MUON_STATIC" } end
filter "*DLL"
kind "SharedLib"
filter {}
------------------------------
-- Project
------------------------------
-- Muon
if _OPTIONS["buildmuon"] then
include(SolutionRoot.."/extern/Muon/project_Lib")
end
-- Haize
include("project_Lib")
include("project_Exe")
if _OPTIONS["unittests"] then
include("project_UnitTests")
end
------------------------------
-- Options
------------------------------
newoption {
trigger = "installdir",
value = "PATH",
description = "Folder to search lib & include; default: '"..G_Install.Root.."'",
}
newoption {
trigger = "unittests",
description = "Enable compilation of unit tests",
}
newoption {
trigger = "buildmuon",
description = "Add Muon external project to the solution",
}
------------------------------
-- Actions
------------------------------
newaction {
trigger = "install",
description = "Install developpment files & library",
execute = function ()
print("** Installing Header files in: "..G_Install.Header.." **")
local incDir = SolutionRoot.."/include/"
local libDir = SolutionRoot.."/bin/lib/"
-- Create required folders
local dirList = os.matchdirs(incDir.."**")
for _,fdir in pairs(dirList) do
local destDir = G_Install.Header..string.sub(fdir, #incDir)
if(not os.isdir(destDir)) then
if os.mkdir(destDir) then print("Creating "..destDir) end
end
end
-- Copy files
local fileList = os.matchfiles(incDir.."**")
for _,fpath in pairs(fileList) do
local destFile = G_Install.Header..string.sub(fpath, #incDir)
if os.copyfile(fpath, destFile) then print("Installing "..destFile) end
end
-- LIBRARY
print("** Installing Library files in: "..G_Install.Lib.." **")
local destDir = G_Install.Lib
-- Create required folders
if(not os.isdir(destDir)) then
if os.mkdir(destDir) then print("Creating "..destDir) end
end
local exts = {}
if os.is("windows") then
exts[0] = ".dll"
exts[1] = ".lib"
else
exts[0] = ".so"
exts[1] = ".a"
end
-- Copy files
for _,ext in pairs(exts) do
local fileList = os.matchfiles(libDir.."**"..ext)
for _,fpath in pairs(fileList) do
local destFile = G_Install.Lib..string.sub(fpath, #libDir)
if os.copyfile(fpath, destFile) then print("Installing "..destFile) end
end
end
end
}
if os.is("windows") then
newaction {
trigger = "getlib",
description = "Retrieve libraries from 'installdir' and put them in bin/",
execute = function ()
print("** Retrieving files from: "..G_Install.Lib.." **")
local libDir = G_Install.Lib
local destDir = "bin"
-- Create required folders
if(not os.isdir(destDir)) then
if os.mkdir(destDir) then print("Creating "..destDir) end
end
-- Copy files
local fileList = os.matchfiles(libDir.."**Muon**dll")
for _,fpath in pairs(fileList) do
local destFile = destDir..string.sub(fpath, 1+#G_Install.Lib)
if os.copyfile(fpath, destFile) then print("Copying "..fpath.." to "..destDir) end
end
end
}
end