-
Notifications
You must be signed in to change notification settings - Fork 0
/
premake4.lua
441 lines (411 loc) · 20.8 KB
/
premake4.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
--[[
This premake4.lua _requires_ windirstat/premake-stable to work properly.
If you don't want to use the code-signed build that can be found in the
./common/ subfolder, you can build from the WDS-branch over at:
https://bitbucket.org/windirstat/premake-stable
]]
local assemblyName = "WinDirStat_Team.WinDirStat.windirstat"
local programVersion = "1.3" -- until we find a clever way to put this into an environment variable or so ...
local publicKeyToken = "db89f19495b8f232" -- the token for the code-signing
local action = _ACTION or ""
local release = false
local slnname = ""
local pfx = ""
if _OPTIONS["resources"] then
print "INFO: Creating projects for resource DLLs."
end
if _OPTIONS["release"] then
print "INFO: Creating release build solution."
_OPTIONS["resources"] = ""
_OPTIONS["sdk71"] = ""
release = true
slnname = "wds_release"
pfx = slnname .. "_"
_OPTIONS["release"] = pfx
end
do
-- This is mainly to support older premake4 builds
if not premake.project.getbasename then
print "Magic happens ..."
-- override the function to establish the behavior we'd get after patching Premake to have premake.project.getbasename
premake.project.getbasename = function(prjname, pattern)
return pattern:gsub("%%%%", prjname)
end
-- obviously we also need to overwrite the following to generate functioning VS solution files
premake.vstudio.projectfile = function(prj)
local pattern
if prj.language == "C#" then
pattern = "%%.csproj"
else
pattern = iif(_ACTION > "vs2008", "%%.vcxproj", "%%.vcproj")
end
local fname = premake.project.getbasename(prj.name, pattern)
fname = path.join(prj.location, fname)
return fname
end
-- we simply overwrite the original function on older Premake versions
premake.project.getfilename = function(prj, pattern)
local fname = premake.project.getbasename(prj.name, pattern)
fname = path.join(prj.location, fname)
return path.getrelative(os.getcwd(), fname)
end
end
-- Name the project files after their VS version
local orig_getbasename = premake.project.getbasename
premake.project.getbasename = function(prjname, pattern)
-- The below is used to insert the .vs(8|9|10|11|12|14) into the file names for projects and solutions
if _ACTION then
name_map = {vs2005 = "vs8", vs2008 = "vs9", vs2010 = "vs10", vs2012 = "vs11", vs2013 = "vs12", vs2015 = "vs14"}
if name_map[_ACTION] then
pattern = pattern:gsub("%%%%", "%%%%." .. name_map[_ACTION])
else
pattern = pattern:gsub("%%%%", "%%%%." .. _ACTION)
end
end
return orig_getbasename(prjname, pattern)
end
-- Override the object directory paths ... don't make them "unique" inside premake4
local orig_gettarget = premake.gettarget
premake.gettarget = function(cfg, direction, pathstyle, namestyle, system)
local r = orig_gettarget(cfg, direction, pathstyle, namestyle, system)
if (cfg.objectsdir) and (cfg.objdir) then
cfg.objectsdir = cfg.objdir
end
return r
end
-- Silently suppress generation of the .user files ...
local orig_generate = premake.generate
premake.generate = function(obj, filename, callback)
if filename:find('.vcproj.user') or filename:find('.vcxproj.user') then
return
end
orig_generate(obj, filename, callback)
end
-- Make sure we do not incremental linking for the resource DLLs
local orig_config_isincrementallink = premake.config.isincrementallink
premake.config.isincrementallink = function(cfg)
if cfg.project.name:find(pfx..'wdsr') and cfg.flags.NoIncrementalLink then
return false
end
return orig_config_isincrementallink(cfg)
end
-- Override the project creation to suppress unnecessary configurations
-- these get invoked by sln2005.generate per project ...
-- ... they depend on the values in the sln.vstudio_configs table
local mprj = {[pfx.."wdsr%x*"] = {["Release|Win32"] = 0}, [pfx.."minilua"] = {["Release|Win32"] = 0}, [pfx.."buildvm"] = {["Release|Win32"] = 0, ["Release|x64"] = 0}, [pfx.."luajit2"] = {["Release|Win32"] = 0, ["Release|x64"] = 0}, [pfx.."lua"] = {["Release|Win32"] = 0, ["Release|x64"] = 0}}
local function prjgen_override_factory(orig_prjgen)
return function(prj)
local function prjmap()
for k,v in pairs(mprj) do
if prj.name:find(k) or prj.name:match(k) then
return v
end
end
return nil
end
if prjmap() and type(prj.solution.vstudio_configs) == "table" then
local cfgs = prj.solution.vstudio_configs
local faked_cfgs = {}
local prjmap = prjmap()
for k,v in pairs(cfgs) do
if prjmap[v['name']] then
faked_cfgs[#faked_cfgs+1] = v
end
end
prj.solution.vstudio_configs = faked_cfgs
retval = orig_prjgen(prj)
prj.solution.vstudio_configs = cfgs
return retval
end
return orig_prjgen(prj)
end
end
premake.vs2010_vcxproj = prjgen_override_factory(premake.vs2010_vcxproj)
premake.vstudio.vc200x.generate = prjgen_override_factory(premake.vstudio.vc200x.generate)
-- Allow us to set the project configuration to Release|Win32 for the resource DLL projects,
-- no matter what the global solution project is.
local orig_project_platforms_sln2prj_mapping = premake.vstudio.sln2005.project_platforms_sln2prj_mapping
premake.vstudio.sln2005.project_platforms_sln2prj_mapping = function(sln, prj, cfg, mapped)
if prj.name:find(pfx..'wdsr') then
_p('\t\t{%s}.%s.ActiveCfg = Release|Win32', prj.uuid, cfg.name)
if release and mapped == "Win32" and cfg.name == "Release|Win32" then
_p('\t\t{%s}.%s.Build.0 = Release|Win32', prj.uuid, cfg.name)
end
elseif prj.name:find(pfx..'minilua') then
_p('\t\t{%s}.%s.ActiveCfg = Release|Win32', prj.uuid, cfg.name)
_p('\t\t{%s}.%s.Build.0 = Release|Win32', prj.uuid, cfg.name)
elseif prj.name:find(pfx..'buildvm') or prj.name:find(pfx..'luajit2') or prj.name:find(pfx..'lua') then
_p('\t\t{%s}.%s.ActiveCfg = Release|%s', prj.uuid, cfg.name, mapped)
_p('\t\t{%s}.%s.Build.0 = Release|%s', prj.uuid, cfg.name, mapped)
else
_p('\t\t{%s}.%s.ActiveCfg = %s|%s', prj.uuid, cfg.name, cfg.buildcfg, mapped)
if mapped == cfg.platform or cfg.platform == "Mixed Platforms" then
_p('\t\t{%s}.%s.Build.0 = %s|%s', prj.uuid, cfg.name, cfg.buildcfg, mapped)
end
end
end
-- Make sure to intercept the VCManifestTool element generation, we need to add to it.
--
local function nval(val)
return iif(val, val, "<null>")
end
local VCManifestTool_handler = premake.vstudio.vc200x.toolmap["VCManifestTool"]
premake.vstudio.vc200x.toolmap["VCManifestTool"] = function(cfg)
io.capture()
VCManifestTool_handler(cfg)
local captured = io.endcapture()
if captured:find("res/windirstat\.manifest") and cfg.name and cfg.platform then
local identity_fmt = "%s, processorArchitecture=%s, version=%s, type=win32"
local arch = iif(cfg.platform == "x32", "x86", iif(cfg.platform == "x64", "amd64", "*"))
if _OPTIONS["release"] and (cfg.name == "Release") then
identity_fmt = identity_fmt .. string.format(", publicKeyToken=%s", publicKeyToken)
end
local identity = string.format(identity_fmt, assemblyName, arch, programVersion)
captured = captured:gsub("(%\t+)AdditionalManifestFiles=\"[^\"]+\"", "%0" .. io.eol .. "%1AssemblyIdentity=\"" .. premake.esc(identity) .. "\"")
end
io.write(captured)
end
end
local function transformMN(input) -- transform the macro names for older Visual Studio versions
local new_map = { vs2002 = 0, vs2003 = 0, vs2005 = 0, vs2008 = 0 }
local replacements = { Platform = "PlatformName", Configuration = "ConfigurationName" }
if new_map[action] ~= nil then
for k,v in pairs(replacements) do
if input:find(k) then
input = input:gsub(k, v)
end
end
end
return input
end
local function inc(inc_dir)
include(inc_dir)
create_luajit_projects(inc_dir)
end
newoption { trigger = "resources", description = "Also create projects for the resource DLLs." }
newoption { trigger = "sdk71", description = "Applies to VS 2005 and 2008. If you have the Windows 7 SP1\n SDK, use this to create projects for a feature-complete\n WinDirStat." }
newoption { trigger = "release", description = "Creates a solution suitable for a release build." }
newoption { trigger = "dev", description = "Add projects only relevant during development." }
solution (iif(release, slnname, "windirstat"))
configurations (iif(release, {"Release"}, {"Debug", "Release"}))
platforms {"x32", "x64"}
location ('.')
-- Include the LuaJIT projects
inc("3rdparty\\lua")
-- Main WinDirStat project
project (iif(release, slnname, "windirstat"))
local int_dir = pfx.."intermediate/" .. action .. "_$(" .. transformMN("Platform") .. ")_$(" .. transformMN("Configuration") .. ")\\$(ProjectName)"
uuid ("BD11B94C-6594-4477-9FDF-2E24447D1F14")
language ("C++")
kind ("WindowedApp")
location ("windirstat")
targetname ("wds")
flags {"StaticRuntime", "Unicode", "MFC", "NativeWChar", "ExtraWarnings", "NoRTTI", "WinMain", "NoMinimalRebuild", "NoIncrementalLink", "NoEditAndContinue"}
targetdir (iif(release, slnname, "build"))
includedirs {".", "windirstat", "common", "windirstat/Controls", "windirstat/Dialogs", "3rdparty/lua/src"}
objdir (int_dir)
libdirs {"$(IntDir)"}
links {"htmlhelp", "psapi", "delayimp", pfx.."luajit2"}
resoptions {"/nologo", "/l409"}
resincludedirs {".", "$(IntDir)"}
linkoptions {"/delayload:psapi.dll", "/pdbaltpath:%_PDB%"}
prebuildcommands("if not exist \"$(SolutionDir)common\\buildnumber.h\" \"$(SolutionDir)common\\buildinc.cmd\" \"$(SolutionDir)common\"")
if release then
postbuildcommands
{
"signtool.exe sign /v /a /ph /d \"WinDirStat\" /du \"http://windirstat.info\" /tr http://www.startssl.com/timestamp \"$(TargetPath)\""
}
if os.isfile("common/hgtip.h") then
defines ("HAVE_HGTIP")
end
end
files
{
"common/*.h",
"common/*.cpp",
"windirstat/*.cpp",
"windirstat/Controls/*.cpp",
"windirstat/Dialogs/*.cpp",
"windirstat/*.c",
"windirstat/*.h",
"windirstat/Controls/*.h",
"windirstat/Dialogs/*.h",
"windirstat/windirstat.rc",
"windirstat/res/*.*",
"*.txt", "*.md",
"common/BUILD",
"common/*.cmd",
"premake4.lua",
}
excludes
{
"common/tracer.cpp", -- this one gets an #include via windirstat.cpp
"windirstat/stdafx.cpp",
}
vpaths
{
["Header Files/Common/*"] = { "common/*.h" },
["Header Files/Controls/*"] = { "windirstat/Controls/*.h" },
["Header Files/Dialogs/*"] = { "windirstat/Dialogs/*.h" },
["Header Files/*"] = { "windirstat/*.h" },
["Resource Files/*"] = { "windirstat/*.rc" },
["Resource Files/Resources/*"] = { "windirstat/res/*.*" },
["Source Files/Common/*"] = { "common/*.cpp" },
["Source Files/Lua/*"] = { "windirstat/WDS_Lua_C.c" },
["Source Files/Controls/*"] = { "windirstat/Controls/*.cpp" },
["Source Files/Dialogs/*"] = { "windirstat/Dialogs/*.cpp" },
["Source Files/*"] = { "windirstat/*.cpp" },
["Special Files/*"] = { "common/BUILD", "common/*.cmd", "premake4.lua", "*.cmd" },
["*"] = { "*.txt", "*.md" },
}
configuration {"Debug", "x32"}
targetsuffix ("32D")
configuration {"Debug", "x64"}
targetsuffix ("64D")
configuration {"Release", "x32"}
targetsuffix ("32")
configuration {"Release", "x64"}
targetsuffix ("64")
configuration {"Debug"}
defines {"_DEBUG", "VTRACE_TO_CONSOLE=1", "VTRACE_DETAIL=2"}
flags {"Symbols"}
configuration {"Release"}
defines ("NDEBUG")
flags {"Optimize", "Symbols"}
linkoptions {"/release"}
buildoptions {"/Oi", "/Ot"}
configuration {"vs2005", "windirstat/WDS_Lua_C.c"}
defines ("_CRT_SECURE_NO_WARNINGS") -- _CRT_SECURE_NO_DEPRECATE, _SCL_SECURE_NO_WARNINGS, _AFX_SECURE_NO_WARNINGS and _ATL_SECURE_NO_WARNINGS???
configuration {"vs2013"}
defines {"WINVER=0x0501"}
configuration {"vs2002 or vs2003 or vs2005 or vs2008 or vs2010 or vs2012"}
defines {"WINVER=0x0500"}
if _OPTIONS["sdk71"] then
configuration {"vs2005 or vs2008"}
defines {"HAVE_WIN7_SDK=1"}
if action == "vs2005" or action == "vs2008" then
print "INFO: Assuming Windows 7 SP1 SDK is installed (#define HAVE_WIN7_SDK=1)."
end
end
if _OPTIONS["dev"] then
project (pfx.."luaconf")
local int_dir = pfx.."intermediate/" .. action .. "_$(" .. transformMN("Platform") .. ")_$(" .. transformMN("Configuration") .. ")\\$(ProjectName)"
uuid ("66A24518-ACE0-4C57-96B0-FF9F324E0985")
language ("C++")
kind ("ConsoleApp")
location ("sandbox/luaconf")
targetname ("luaconf")
flags {"StaticRuntime", "Unicode", "MFC", "NativeWChar", "ExtraWarnings", "NoRTTI", "WinMain", "NoMinimalRebuild", "NoIncrementalLink", "NoEditAndContinue"}
targetdir (iif(release, slnname, "build"))
includedirs {"windirstat", "common", "3rdparty/lua/src", "sandbox/luaconf"}
objdir (int_dir)
libdirs {"$(IntDir)"}
links {pfx.."luajit2"}
resoptions {"/nologo", "/l409"}
resincludedirs {".", "$(IntDir)"}
linkoptions {"/pdbaltpath:%_PDB%"}
prebuildcommands{"copy \"$(ProjectDir)lua_conf.lua\" \"$(TargetDir)\\\""}
files
{
"windirstat/WDS_Lua_C.c",
"sandbox/luaconf/*.h",
"sandbox/luaconf/*.rc",
"sandbox/luaconf/*.cpp",
"sandbox/luaconf/*.txt", "sandbox/luaconf/*.md",
}
vpaths
{
["Header Files/*"] = { "sandbox/luaconf/*.h" },
["Resource Files/*"] = { "sandbox/luaconf/*.rc" },
["Source Files/*"] = { "sandbox/luaconf/*.cpp", "windirstat/WDS_Lua_C.c" },
["*"] = { "sandbox/luaconf/*.txt", "sandbox/luaconf/*.md" },
}
configuration {"Debug", "x32"}
targetsuffix ("32D")
configuration {"Debug", "x64"}
targetsuffix ("64D")
configuration {"Release", "x32"}
targetsuffix ("32")
configuration {"Release", "x64"}
targetsuffix ("64")
configuration {"Debug"}
defines {"_DEBUG"}
flags {"Symbols"}
configuration {"Release"}
defines ("NDEBUG")
flags {"Optimize", "Symbols"}
linkoptions {"/release"}
buildoptions {"/Oi", "/Ot"}
configuration {"vs2005", "windirstat/WDS_Lua_C.c"}
defines ("_CRT_SECURE_NO_WARNINGS") -- _CRT_SECURE_NO_DEPRECATE, _SCL_SECURE_NO_WARNINGS, _AFX_SECURE_NO_WARNINGS and _ATL_SECURE_NO_WARNINGS???
configuration {"vs2013"}
defines {"WINVER=0x0501"}
configuration {"vs2002 or vs2003 or vs2005 or vs2008 or vs2010 or vs2012"}
defines {"WINVER=0x0500"}
end
-- Add the resource DLL projects, if requested
if _OPTIONS["resources"] then
do
local oldcurr = premake.CurrentContainer
local resource_dlls = {
["wdsr0405"] = "C3F39C58-7FC4-4243-82B2-A3572235AE02", -- Czech
["wdsr0407"] = "C8D9E4F9-7051-4B41-A5AB-F68F3FCE42E8", -- German
["wdsr040a"] = "23B76347-204C-4DE6-A311-F562CEF5D89C", -- Spanish
["wdsr040b"] = "C7A5D1EC-35D3-4754-A815-2C527CACD584", -- Finnish
["wdsr040c"] = "DA4DDD24-67BC-4A9D-87D3-18C73E5CAF31", -- French
["wdsr040e"] = "2A75AA20-BFFE-4D1C-8AEC-274823223919", -- Hungarian
["wdsr0410"] = "FD4194A7-EA1E-4466-A80B-AB4D8D17F33C", -- Italian
["wdsr0413"] = "70A55EB7-E109-41DE-81B4-0DF2B72DCDE9", -- Dutch
["wdsr0415"] = "70C09DAA-6F6D-4AAC-955F-ACD602A667CE", -- Polish
["wdsr0416"] = "025A9D90-4C61-4D34-8BEC-8A1A044B80EB", -- Portuguese (Brazil)
["wdsr0419"] = "7F06AAC4-9FBE-412F-B1D7-CB37AB8F311D", -- Russian
["wdsr0425"] = "2FADC62C-C670-4963-8B69-70ECA7987B93", -- Estonian
}
for nm,guid in pairs(resource_dlls) do
premake.CurrentContainer = oldcurr
prj = project(pfx..nm)
local int_dir = pfx.."intermediate/" .. action .. "_$(ProjectName)_" .. nm
uuid (guid)
language ("C++")
kind ("SharedLib")
location ("windirstat/res/" .. nm)
flags {"NoImportLib", "Unicode", "NoManifest", "NoExceptions", "NoPCH", "NoIncrementalLink"}
objdir (int_dir)
targetdir (iif(release, slnname, "build"))
targetname (nm)
targetextension (".wdslng")
resoptions {"/nologo", "/l409"}
resincludedirs {".", "$(ProjectDir)", "$(IntDir)"}
linkoptions {"/noentry"}
if release then
postbuildcommands
{
"signtool.exe sign /v /a /ph /d \"WinDirStat resource DLL\" /du \"http://windirstat.info\" /tr http://www.startssl.com/timestamp \"$(TargetPath)\""
}
if os.isfile("common/hgtip.h") then
defines ("HAVE_HGTIP")
end
end
files
{
"windirstat/res/" .. nm .. "/*.txt", "windirstat/res/" .. nm .. "/*.rst",
"windirstat/res/" .. nm .. "/windirstat.rc",
"windirstat/res/" .. nm .. "/res/windirstat.rc2",
"common/version.h",
"windirstat/res/*.bmp",
"windirstat/res/*.cur",
"windirstat/res/*.ico",
"windirstat/res/*.txt",
"windirstat/resource.h",
}
vpaths
{
["Header Files/*"] = { "windirstat/*.h", "common/*.h", "windirstat/res/" .. nm .. "/*.h" },
["Resource Files/*"] = { "windirstat/res/" .. nm .. "/windirstat.rc", "windirstat/res/" .. nm .. "/res/windirstat.rc2" },
["Resource Files/embedded/*"] = { "windirstat/res/*" },
["*"] = { "windirstat/res/" .. nm .. "/*.txt", "windirstat/res/" .. nm .. "/*.rst" },
}
end
premake.CurrentContainer = oldcurr
end
end