2014-09-17 23:19:47 +00:00
|
|
|
---
|
2014-12-13 22:32:09 +00:00
|
|
|
-- Premake 5.x build configuration script
|
|
|
|
-- Use this script to configure the project with Premake5.
|
2014-09-17 23:19:47 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Remember my location; I will need it to locate sub-scripts later.
|
|
|
|
--
|
|
|
|
|
|
|
|
local corePath = _SCRIPT_DIR
|
|
|
|
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2013-10-09 19:44:08 +00:00
|
|
|
--
|
|
|
|
-- Disable deprecation warnings for myself, so that older development
|
2014-09-17 23:19:47 +00:00
|
|
|
-- versions of Premake can be used to bootstrap new builds.
|
2013-10-09 19:44:08 +00:00
|
|
|
--
|
|
|
|
|
|
|
|
premake.api.deprecations "off"
|
|
|
|
|
2014-09-17 23:19:47 +00:00
|
|
|
|
|
|
|
--
|
|
|
|
-- Register supporting actions and options.
|
|
|
|
--
|
|
|
|
|
2014-09-26 13:25:14 +00:00
|
|
|
newaction {
|
|
|
|
trigger = "embed",
|
|
|
|
description = "Embed scripts in scripts.c; required before release builds",
|
|
|
|
execute = function ()
|
|
|
|
include (path.join(corePath, "scripts/embed.lua"))
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-23 00:02:09 +00:00
|
|
|
newaction {
|
|
|
|
trigger = "package",
|
|
|
|
description = "Creates source and binary packages",
|
|
|
|
execute = function ()
|
|
|
|
include (path.join(corePath, "scripts/package.lua"))
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-17 23:19:47 +00:00
|
|
|
newaction {
|
|
|
|
trigger = "test",
|
|
|
|
description = "Run the automated test suite",
|
|
|
|
execute = function ()
|
2016-05-16 20:27:14 +00:00
|
|
|
test = require "self-test"
|
|
|
|
premake.action.call("self-test")
|
2014-09-17 23:19:47 +00:00
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
newoption {
|
2016-05-18 19:56:04 +00:00
|
|
|
trigger = "test-only",
|
2014-09-17 23:19:47 +00:00
|
|
|
description = "When testing, run only the specified suite or test"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-09-26 13:25:14 +00:00
|
|
|
newoption {
|
|
|
|
trigger = "to",
|
|
|
|
value = "path",
|
|
|
|
description = "Set the output location for the generated files"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-07-24 07:59:37 +00:00
|
|
|
newoption {
|
2015-07-27 13:55:55 +00:00
|
|
|
trigger = "no-curl",
|
|
|
|
description = "Disable Curl 3rd party lib"
|
2015-07-24 07:59:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
newoption {
|
2015-07-27 13:55:55 +00:00
|
|
|
trigger = "no-zlib",
|
|
|
|
description = "Disable Zlib/Zip 3rd party lib"
|
2015-07-24 07:59:37 +00:00
|
|
|
}
|
2018-03-17 14:47:40 +00:00
|
|
|
|
|
|
|
newoption {
|
|
|
|
trigger = "no-luasocket",
|
|
|
|
description = "Disable Luasocket 3rd party lib"
|
|
|
|
}
|
2015-07-24 07:59:37 +00:00
|
|
|
|
2015-10-05 19:41:11 +00:00
|
|
|
newoption {
|
2016-02-15 00:05:40 +00:00
|
|
|
trigger = "bytecode",
|
|
|
|
description = "Embed scripts as bytecode instead of stripped souce code"
|
2015-10-05 19:41:11 +00:00
|
|
|
}
|
2014-09-17 23:19:47 +00:00
|
|
|
|
2013-09-10 20:24:39 +00:00
|
|
|
--
|
|
|
|
-- Define the project. Put the release configuration first so it will be the
|
|
|
|
-- default when folks build using the makefile. That way they don't have to
|
|
|
|
-- worry about the /scripts argument and all that.
|
2014-09-17 23:19:47 +00:00
|
|
|
--
|
2016-07-22 14:05:55 +00:00
|
|
|
-- TODO: Switch to these new APIs once they've had a chance to land everywhere
|
|
|
|
--
|
|
|
|
-- defaultConfiguration "Release"
|
|
|
|
-- symbols "On"
|
2013-09-10 20:24:39 +00:00
|
|
|
--
|
|
|
|
|
|
|
|
solution "Premake5"
|
|
|
|
configurations { "Release", "Debug" }
|
|
|
|
location ( _OPTIONS["to"] )
|
|
|
|
|
2017-11-30 17:46:56 +00:00
|
|
|
flags { "StaticRuntime", "MultiProcessorCompile" }
|
2017-04-13 19:37:49 +00:00
|
|
|
warnings "Extra"
|
2016-02-05 18:11:08 +00:00
|
|
|
|
|
|
|
if not _OPTIONS["no-zlib"] then
|
|
|
|
defines { "PREMAKE_COMPRESSION" }
|
|
|
|
end
|
2018-03-17 14:47:40 +00:00
|
|
|
|
2016-02-05 18:11:08 +00:00
|
|
|
if not _OPTIONS["no-curl"] then
|
|
|
|
defines { "CURL_STATICLIB", "PREMAKE_CURL"}
|
|
|
|
end
|
|
|
|
|
2017-11-30 17:46:56 +00:00
|
|
|
filter { 'system:windows' }
|
|
|
|
platforms { 'x86', 'x64' }
|
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter "configurations:Debug"
|
2016-02-05 18:11:08 +00:00
|
|
|
defines "_DEBUG"
|
2016-07-22 14:05:55 +00:00
|
|
|
flags { "Symbols" }
|
2016-02-05 18:11:08 +00:00
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter "configurations:Release"
|
2016-02-05 18:11:08 +00:00
|
|
|
defines "NDEBUG"
|
|
|
|
optimize "Full"
|
|
|
|
flags { "NoBufferSecurityCheck", "NoRuntimeChecks" }
|
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter "action:vs*"
|
2016-02-05 18:11:08 +00:00
|
|
|
defines { "_CRT_SECURE_NO_DEPRECATE", "_CRT_SECURE_NO_WARNINGS", "_CRT_NONSTDC_NO_WARNINGS" }
|
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter { "system:windows", "configurations:Release" }
|
2018-07-19 20:55:59 +00:00
|
|
|
flags { "NoIncrementalLink" }
|
|
|
|
|
|
|
|
-- MinGW AR does not handle LTO out of the box and need a plugin to be setup
|
|
|
|
filter { "system:windows", "configurations:Release", "toolset:not mingw" }
|
|
|
|
flags { "LinkTimeOptimization" }
|
2016-02-05 18:11:08 +00:00
|
|
|
|
2013-09-10 20:24:39 +00:00
|
|
|
project "Premake5"
|
|
|
|
targetname "premake5"
|
|
|
|
language "C"
|
|
|
|
kind "ConsoleApp"
|
2017-06-25 15:57:53 +00:00
|
|
|
includedirs { "contrib/lua/src", "contrib/luashim" }
|
2016-02-25 23:39:49 +00:00
|
|
|
links { "lua-lib" }
|
2015-07-24 07:59:37 +00:00
|
|
|
|
|
|
|
-- optional 3rd party libraries
|
2015-07-27 13:55:55 +00:00
|
|
|
if not _OPTIONS["no-zlib"] then
|
2015-04-15 00:42:44 +00:00
|
|
|
includedirs { "contrib/zlib", "contrib/libzip" }
|
|
|
|
links { "zip-lib", "zlib-lib" }
|
|
|
|
end
|
2018-03-17 14:47:40 +00:00
|
|
|
|
2015-07-27 13:55:55 +00:00
|
|
|
if not _OPTIONS["no-curl"] then
|
2015-04-15 00:42:44 +00:00
|
|
|
includedirs { "contrib/curl/include" }
|
2017-03-09 19:07:32 +00:00
|
|
|
links { "curl-lib" }
|
2015-04-15 00:42:44 +00:00
|
|
|
end
|
2013-09-10 20:24:39 +00:00
|
|
|
|
|
|
|
files
|
|
|
|
{
|
|
|
|
"*.txt", "**.lua",
|
|
|
|
"src/**.h", "src/**.c",
|
2017-08-02 21:03:58 +00:00
|
|
|
"modules/**"
|
2013-09-10 20:24:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
excludes
|
|
|
|
{
|
2017-06-25 15:57:53 +00:00
|
|
|
"contrib/**.*",
|
|
|
|
"binmodules/**.*"
|
2013-09-10 20:24:39 +00:00
|
|
|
}
|
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter "configurations:Debug"
|
2013-09-10 20:24:39 +00:00
|
|
|
targetdir "bin/debug"
|
2017-10-16 18:24:09 +00:00
|
|
|
debugargs { "--scripts=%{prj.location}/%{path.getrelative(prj.location, prj.basedir)}", "test" }
|
|
|
|
debugdir "."
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter "configurations:Release"
|
2013-09-10 20:24:39 +00:00
|
|
|
targetdir "bin/release"
|
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter "system:windows"
|
2016-12-28 15:43:54 +00:00
|
|
|
links { "ole32", "ws2_32", "advapi32" }
|
2018-07-19 20:55:59 +00:00
|
|
|
filter "toolset:mingw"
|
|
|
|
links { "version", "crypt32" }
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter "system:linux or bsd or hurd"
|
2013-09-10 20:24:39 +00:00
|
|
|
defines { "LUA_USE_POSIX", "LUA_USE_DLOPEN" }
|
|
|
|
links { "m" }
|
|
|
|
linkoptions { "-rdynamic" }
|
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter "system:linux or hurd"
|
2015-07-31 22:59:53 +00:00
|
|
|
links { "dl", "rt" }
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2017-03-09 19:07:32 +00:00
|
|
|
filter { "system:not windows", "system:not macosx" }
|
|
|
|
if not _OPTIONS["no-curl"] then
|
|
|
|
links { "mbedtls-lib" }
|
|
|
|
end
|
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter "system:macosx"
|
2013-09-10 20:24:39 +00:00
|
|
|
defines { "LUA_USE_MACOSX" }
|
2016-03-02 00:09:40 +00:00
|
|
|
links { "CoreServices.framework", "Foundation.framework", "Security.framework", "readline" }
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter { "system:macosx", "action:gmake" }
|
2013-09-10 20:24:39 +00:00
|
|
|
toolset "clang"
|
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter { "system:solaris" }
|
2018-04-25 13:07:22 +00:00
|
|
|
links { "m", "socket", "nsl" }
|
2013-09-10 20:24:39 +00:00
|
|
|
|
2016-04-04 16:59:00 +00:00
|
|
|
filter "system:aix"
|
2013-09-10 20:24:39 +00:00
|
|
|
defines { "LUA_USE_POSIX", "LUA_USE_DLOPEN" }
|
|
|
|
links { "m" }
|
|
|
|
|
2019-05-18 17:11:35 +00:00
|
|
|
filter "system:haiku"
|
|
|
|
defines { "LUA_USE_POSIX", "LUA_USE_DLOPEN", "_BSD_SOURCE" }
|
|
|
|
links { "network", "bsd" }
|
|
|
|
|
2015-10-26 15:46:26 +00:00
|
|
|
|
2015-07-24 07:59:37 +00:00
|
|
|
-- optional 3rd party libraries
|
2015-07-27 13:55:55 +00:00
|
|
|
group "contrib"
|
2016-02-25 23:39:49 +00:00
|
|
|
include "contrib/lua"
|
2017-06-25 15:57:53 +00:00
|
|
|
include "contrib/luashim"
|
2018-03-17 14:47:40 +00:00
|
|
|
|
2015-07-27 13:55:55 +00:00
|
|
|
if not _OPTIONS["no-zlib"] then
|
|
|
|
include "contrib/zlib"
|
|
|
|
include "contrib/libzip"
|
2015-04-15 00:42:44 +00:00
|
|
|
end
|
2018-03-17 14:47:40 +00:00
|
|
|
|
2015-07-27 13:55:55 +00:00
|
|
|
if not _OPTIONS["no-curl"] then
|
2016-06-09 17:42:30 +00:00
|
|
|
include "contrib/mbedtls"
|
2015-07-27 13:55:55 +00:00
|
|
|
include "contrib/curl"
|
2018-03-30 11:37:25 +00:00
|
|
|
end
|
2015-07-24 07:59:37 +00:00
|
|
|
|
2017-06-25 15:57:53 +00:00
|
|
|
group "Binary Modules"
|
|
|
|
include "binmodules/example"
|
2018-03-30 11:37:25 +00:00
|
|
|
|
|
|
|
if not _OPTIONS["no-luasocket"] then
|
|
|
|
include "binmodules/luasocket"
|
|
|
|
end
|
2017-06-25 15:57:53 +00:00
|
|
|
|
2013-09-10 20:24:39 +00:00
|
|
|
--
|
|
|
|
-- A more thorough cleanup.
|
|
|
|
--
|
|
|
|
|
|
|
|
if _ACTION == "clean" then
|
|
|
|
os.rmdir("bin")
|
|
|
|
os.rmdir("build")
|
|
|
|
end
|