2016-01-03 20:12:05 -05:00
|
|
|
|
2015-12-30 20:44:04 -05:00
|
|
|
-- Option to allow copying the DLL file to a custom folder after build
|
|
|
|
newoption {
|
|
|
|
trigger = "copy-to",
|
2015-12-30 21:58:16 -05:00
|
|
|
description = "Optional, copy the DLL to a custom folder after build, define the path here if wanted.",
|
|
|
|
value = "PATH"
|
2015-12-30 20:44:04 -05:00
|
|
|
}
|
|
|
|
|
2015-12-30 22:07:16 -05:00
|
|
|
newoption {
|
|
|
|
trigger = "no-new-structure",
|
|
|
|
description = "Do not use new virtual path structure (separating headers and source files)."
|
|
|
|
}
|
|
|
|
|
2015-12-30 21:59:33 -05:00
|
|
|
newaction {
|
|
|
|
trigger = "generate-buildinfo",
|
|
|
|
description = "Sets up build information file like version.h.",
|
|
|
|
onWorkspace = function(wks)
|
|
|
|
-- get revision number via git
|
|
|
|
local proc = assert(io.popen("git rev-list --count HEAD", "r"))
|
|
|
|
local revNumber = assert(proc:read('*a')):gsub("%s+", "")
|
|
|
|
proc:close()
|
|
|
|
|
|
|
|
-- get old version number from version.hpp if any
|
2015-12-30 22:18:04 -05:00
|
|
|
local oldRevNumber = "(none)"
|
2015-12-30 21:59:33 -05:00
|
|
|
local oldVersionHeader = io.open(wks.location .. "/version.hpp", "r")
|
|
|
|
if oldVersionHeader ~=nil then
|
|
|
|
local oldVersionHeaderContent = assert(oldVersionHeader:read('*a'))
|
|
|
|
oldRevNumber = string.match(oldVersionHeaderContent, "#define REVISION (%d+)")
|
2016-01-03 08:57:24 -05:00
|
|
|
if oldRevNumber == nil then
|
2016-01-03 08:54:35 -05:00
|
|
|
-- old version.hpp format?
|
|
|
|
oldRevNumber = "(none)"
|
|
|
|
end
|
2015-12-30 21:59:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
-- generate version.hpp with a revision number if not equal
|
|
|
|
if oldRevNumber ~= revNumber then
|
|
|
|
print ("Update " .. oldRevNumber .. " -> " .. revNumber)
|
|
|
|
local versionHeader = assert(io.open(wks.location .. "/version.hpp", "w"))
|
|
|
|
versionHeader:write("/*\n")
|
|
|
|
versionHeader:write(" * Automatically generated by premake5.\n")
|
|
|
|
versionHeader:write(" * Do not touch, you fucking moron!\n")
|
|
|
|
versionHeader:write(" */\n")
|
|
|
|
versionHeader:write("\n")
|
|
|
|
versionHeader:write("#define REVISION " .. revNumber .. "\n")
|
|
|
|
versionHeader:close()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2016-01-04 14:03:56 -05:00
|
|
|
workspace "iw4x"
|
2016-01-04 15:00:17 -05:00
|
|
|
location "./build"
|
|
|
|
objdir "%{wks.location}/obj"
|
|
|
|
targetdir "%{wks.location}/bin/%{cfg.buildcfg}"
|
2016-01-03 20:12:05 -05:00
|
|
|
configurations { "Normal", "Debug", "DebugStatic", "Release", "ReleaseStatic" }
|
2015-12-28 20:52:31 -05:00
|
|
|
|
2016-01-04 13:40:32 -05:00
|
|
|
-- VS 2015 toolset only
|
|
|
|
toolset "msc-140"
|
|
|
|
|
2016-01-04 15:07:34 -05:00
|
|
|
configuration "windows"
|
|
|
|
defines {"_WINDOWS"}
|
2016-01-04 13:42:19 -05:00
|
|
|
|
2016-01-04 14:06:00 -05:00
|
|
|
configuration "Release*"
|
2016-01-04 13:42:19 -05:00
|
|
|
defines { "NDEBUG" }
|
|
|
|
flags { "MultiProcessorCompile", "Symbols", "LinkTimeOptimization", "No64BitChecks" }
|
|
|
|
optimize "Full"
|
|
|
|
|
2016-01-04 14:06:00 -05:00
|
|
|
configuration "Debug*"
|
|
|
|
defines { "DEBUG" }
|
|
|
|
flags { "MultiProcessorCompile", "Symbols", "No64BitChecks" }
|
|
|
|
optimize "Debug"
|
|
|
|
|
|
|
|
configuration "*Static"
|
|
|
|
flags { "StaticRuntime" }
|
2016-01-04 13:42:19 -05:00
|
|
|
|
2015-12-28 20:52:31 -05:00
|
|
|
project "iw4x"
|
|
|
|
kind "SharedLib"
|
|
|
|
language "C++"
|
2015-12-29 08:46:17 -05:00
|
|
|
files { "./src/**.hpp", "./src/**.cpp" }
|
2016-01-04 14:58:00 -05:00
|
|
|
includedirs { "%{prj.location}", "./src" }
|
2016-01-03 08:59:38 -05:00
|
|
|
architecture "x32"
|
2016-01-03 09:18:47 -05:00
|
|
|
configmap {
|
2016-01-03 20:12:05 -05:00
|
|
|
["Normal"] = "Debug"
|
2016-01-03 09:18:47 -05:00
|
|
|
}
|
2015-12-28 20:52:31 -05:00
|
|
|
|
2016-01-04 14:58:00 -05:00
|
|
|
-- Pre-compiled header
|
|
|
|
pchheader "STDInclude.hpp" -- must be exactly same as used in #include directives
|
|
|
|
pchsource "src/STDInclude.cpp" -- real path
|
2016-01-03 09:01:55 -05:00
|
|
|
|
2016-01-14 06:33:11 -05:00
|
|
|
-- Dependency on zlib, json11 and asio
|
2016-01-05 08:39:04 -05:00
|
|
|
links { "zlib", "json11" }
|
2016-01-14 06:33:11 -05:00
|
|
|
includedirs { "./deps/zlib", "./deps/json11", "./deps/asio/asio/include" }
|
2016-01-04 15:07:34 -05:00
|
|
|
|
2016-01-04 13:42:19 -05:00
|
|
|
-- Virtual paths
|
2015-12-30 22:07:16 -05:00
|
|
|
if not _OPTIONS["no-new-structure"] then
|
|
|
|
vpaths {
|
2016-01-04 15:00:17 -05:00
|
|
|
["Headers/*"] = "./src/**.hpp",
|
|
|
|
["Sources/*"] = {"./src/**.cpp"}
|
2015-12-30 22:07:16 -05:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2015-12-30 21:58:43 -05:00
|
|
|
vpaths {
|
|
|
|
["Docs/*"] = {"**.txt","**.md"}
|
|
|
|
}
|
|
|
|
|
2016-01-04 13:42:19 -05:00
|
|
|
-- Pre-build
|
2015-12-30 21:59:33 -05:00
|
|
|
prebuildcommands {
|
|
|
|
"cd %{_MAIN_SCRIPT_DIR}",
|
|
|
|
"premake5 generate-buildinfo"
|
|
|
|
}
|
|
|
|
|
2016-01-04 13:42:19 -05:00
|
|
|
-- Post-build
|
2015-12-30 20:44:04 -05:00
|
|
|
if _OPTIONS["copy-to"] then
|
|
|
|
saneCopyToPath = string.gsub(_OPTIONS["copy-to"] .. "\\", "\\\\", "\\")
|
|
|
|
postbuildcommands {
|
2016-01-04 15:36:55 -05:00
|
|
|
"copy /y \"$(TargetDir)*.dll\" \"" .. saneCopyToPath .. "\""
|
2015-12-30 20:44:04 -05:00
|
|
|
}
|
|
|
|
end
|
2016-01-03 20:19:12 -05:00
|
|
|
|
2016-01-04 13:42:19 -05:00
|
|
|
-- Specific configurations
|
2016-01-04 14:06:00 -05:00
|
|
|
flags { "UndefinedIdentifiers" }
|
|
|
|
|
|
|
|
configuration "Release*"
|
|
|
|
flags { "FatalCompileWarnings" }
|
|
|
|
|
2016-01-04 15:07:34 -05:00
|
|
|
group "External dependencies"
|
|
|
|
|
|
|
|
-- zlib
|
|
|
|
project "zlib"
|
|
|
|
language "C"
|
2016-01-04 15:37:14 -05:00
|
|
|
defines { "ZLIB_DLL", "_CRT_SECURE_NO_DEPRECATE" }
|
2016-01-04 15:07:34 -05:00
|
|
|
|
|
|
|
files
|
|
|
|
{
|
|
|
|
"./deps/zlib/*.h",
|
|
|
|
"./deps/zlib/*.c"
|
|
|
|
}
|
|
|
|
|
|
|
|
-- not our code, ignore POSIX usage warnings for now
|
|
|
|
warnings "Off"
|
2016-01-04 13:42:19 -05:00
|
|
|
|
2016-01-04 15:07:34 -05:00
|
|
|
kind "SharedLib"
|
|
|
|
configuration "*Static"
|
|
|
|
kind "StaticLib"
|
2016-01-04 15:37:14 -05:00
|
|
|
removedefines { "ZLIB_DLL" }
|
2016-01-05 08:39:04 -05:00
|
|
|
|
|
|
|
|
|
|
|
-- json11
|
|
|
|
project "json11"
|
|
|
|
language "C++"
|
|
|
|
|
|
|
|
files
|
|
|
|
{
|
|
|
|
"./deps/json11/*.cpp",
|
|
|
|
"./deps/json11/*.hpp"
|
|
|
|
}
|
|
|
|
|
|
|
|
-- remove dropbox's testing code
|
|
|
|
removefiles { "./deps/json11/test.cpp" }
|
|
|
|
|
|
|
|
-- not our code, ignore POSIX usage warnings for now
|
|
|
|
warnings "Off"
|
|
|
|
|
|
|
|
-- always build as static lib, as json11 doesn't export anything
|
|
|
|
kind "StaticLib"
|