premake/premake5.lua

308 lines
7.0 KiB
Lua
Raw Permalink Normal View History

---
2014-12-13 22:32:09 +00:00
-- Premake 5.x build configuration script
-- Use this script to configure the project with Premake5.
---
--
-- Remember my location; I will need it to locate sub-scripts later.
--
local corePath = _SCRIPT_DIR
--
-- Disable deprecation warnings for myself, so that older development
-- versions of Premake can be used to bootstrap new builds.
--
premake.api.deprecations "off"
--
-- Register supporting actions and options.
--
newaction {
trigger = "embed",
description = "Embed scripts in scripts.c; required before release builds",
execute = function ()
include (path.join(corePath, "scripts/embed.lua"))
end
}
newaction {
trigger = "package",
description = "Creates source and binary packages",
execute = function ()
include (path.join(corePath, "scripts/package.lua"))
end
}
newaction {
trigger = "docs-check",
description = "Validates documentation files for Premake APIs",
execute = function ()
include (path.join(corePath, "scripts/docscheck.lua"))
end
}
newaction {
trigger = "test",
description = "Run the automated test suite",
execute = function ()
test = require "self-test"
premake.action.call("self-test")
end
}
newoption {
trigger = "test-all",
description = "Run all unit tests, including slower network and I/O"
}
newoption {
trigger = "test-only",
description = "When testing, run only the specified suite or test"
}
newoption {
trigger = "to",
value = "path",
description = "Set the output location for the generated files"
}
2015-07-24 07:59:37 +00:00
newoption {
trigger = "no-curl",
description = "Disable Curl 3rd party lib"
2015-07-24 07:59:37 +00:00
}
newoption {
trigger = "no-zlib",
description = "Disable Zlib/Zip 3rd party lib"
2015-07-24 07:59:37 +00:00
}
newoption {
trigger = "no-luasocket",
description = "Disable Luasocket 3rd party lib"
}
2015-07-24 07:59:37 +00:00
newoption {
trigger = "bytecode",
description = "Embed scripts as bytecode instead of stripped souce code"
}
2021-05-25 00:50:08 +00:00
newoption {
trigger = "arch",
value = "arch",
description = "Set the architecture of the binary to be built.",
allowed = {
{ "ARM", "ARM (On macOS, same as ARM64.)" },
{ "ARM64", "ARM64" },
{ "x86", "x86 (On macOS, same as x86_64.)" },
{ "x86_64", "x86_64" },
{ "Universal", "Universal Binary (macOS only)" },
--
{ "Win32", "Same as x86" },
{ "x64", "Same as x86_64" },
2022-05-17 05:04:01 +00:00
--
{ "default", "Generates default platforms for targets, x86 and x86_64 projects for Windows." }
2021-05-25 00:50:08 +00:00
},
2022-05-17 05:04:01 +00:00
default = "default",
2021-05-25 00:50:08 +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.
--
-- TODO: Switch to these new APIs once they've had a chance to land everywhere
--
-- defaultConfiguration "Release"
-- symbols "On"
--
solution "Premake5"
configurations { "Release", "Debug" }
location ( _OPTIONS["to"] )
2022-10-09 05:52:06 +00:00
flags { "MultiProcessorCompile" }
warnings "Extra"
2016-02-05 18:11:08 +00:00
if not _OPTIONS["no-zlib"] then
defines { "PREMAKE_COMPRESSION" }
end
2016-02-05 18:11:08 +00:00
if not _OPTIONS["no-curl"] then
defines { "CURL_STATICLIB", "PREMAKE_CURL"}
end
2021-05-25 00:50:08 +00:00
filter { "system:macosx", "options:arch=ARM or arch=ARM64" }
buildoptions { "-arch arm64" }
linkoptions { "-arch arm64" }
filter { "system:macosx", "options:arch=x86 or arch=x86_64 or arch=Win32 or arch=x64" }
buildoptions { "-arch x86_64" }
linkoptions { "-arch x86_64" }
filter { "system:macosx", "options:arch=Universal" }
buildoptions { "-arch arm64", "-arch x86_64" }
linkoptions { "-arch arm64", "-arch x86_64" }
filter { "system:windows", "options:arch=ARM" }
platforms { "ARM" }
filter { "system:windows", "options:arch=ARM64" }
platforms { "ARM64" }
filter { "system:windows", "options:arch=x86 or arch=Win32" }
platforms { "Win32" }
filter { "system:windows", "options:arch=x86_64 or arch=x64" }
platforms { "x64" }
2022-05-17 05:04:01 +00:00
filter { "system:windows", "options:arch=default" }
platforms { "x86", "x64" }
filter "configurations:Debug"
2016-02-05 18:11:08 +00:00
defines "_DEBUG"
flags { "Symbols" }
2016-02-05 18:11:08 +00:00
filter "configurations:Release"
2016-02-05 18:11:08 +00:00
defines "NDEBUG"
optimize "Full"
flags { "NoBufferSecurityCheck", "NoRuntimeChecks" }
filter "action:vs*"
2016-02-05 18:11:08 +00:00
defines { "_CRT_SECURE_NO_DEPRECATE", "_CRT_SECURE_NO_WARNINGS", "_CRT_NONSTDC_NO_WARNINGS" }
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
2022-10-09 05:52:06 +00:00
filter { "system:uwp" }
systemversion "latest:latest"
consumewinrtextension "false"
project "Premake5"
targetname "premake5"
language "C"
kind "ConsoleApp"
2017-06-25 15:57:53 +00:00
includedirs { "contrib/lua/src", "contrib/luashim" }
links { "lua-lib" }
2015-07-24 07:59:37 +00:00
-- optional 3rd party libraries
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
if not _OPTIONS["no-curl"] then
2015-04-15 00:42:44 +00:00
includedirs { "contrib/curl/include" }
links { "curl-lib" }
2015-04-15 00:42:44 +00:00
end
files
{
"*.txt", "**.lua",
"src/**.h", "src/**.c",
2017-08-02 21:03:58 +00:00
"modules/**"
}
excludes
{
2017-06-25 15:57:53 +00:00
"contrib/**.*",
"binmodules/**.*"
}
filter "configurations:Debug"
targetdir "bin/debug"
debugargs { "--scripts=%{prj.location}/%{path.getrelative(prj.location, prj.basedir)}", "test" }
debugdir "."
filter "configurations:Release"
targetdir "bin/release"
filter "system:windows"
2020-03-30 21:00:38 +00:00
links { "ole32", "ws2_32", "advapi32", "version" }
files { "src/**.rc" }
2020-03-30 21:00:38 +00:00
2018-07-19 20:55:59 +00:00
filter "toolset:mingw"
2020-03-30 21:00:38 +00:00
links { "crypt32" }
filter "system:linux or bsd or hurd"
defines { "LUA_USE_POSIX", "LUA_USE_DLOPEN" }
links { "m" }
linkoptions { "-rdynamic" }
filter "system:linux or hurd"
links { "dl", "rt" }
filter { "system:not windows", "system:not macosx" }
if not _OPTIONS["no-curl"] then
links { "mbedtls-lib" }
end
filter "system:macosx"
defines { "LUA_USE_MACOSX" }
2016-03-02 00:09:40 +00:00
links { "CoreServices.framework", "Foundation.framework", "Security.framework", "readline" }
2022-04-28 23:50:31 +00:00
2022-04-30 04:46:25 +00:00
filter "system:linux"
2022-04-28 23:50:31 +00:00
links { "uuid" }
filter { "system:macosx", "action:gmake" }
toolset "clang"
filter { "system:solaris" }
links { "m", "socket", "nsl" }
filter "system:aix"
defines { "LUA_USE_POSIX", "LUA_USE_DLOPEN" }
links { "m" }
filter "system:haiku"
defines { "LUA_USE_POSIX", "LUA_USE_DLOPEN", "_BSD_SOURCE" }
links { "network", "bsd" }
2015-07-24 07:59:37 +00:00
-- optional 3rd party libraries
group "contrib"
include "contrib/lua"
2017-06-25 15:57:53 +00:00
include "contrib/luashim"
if not _OPTIONS["no-zlib"] then
include "contrib/zlib"
include "contrib/libzip"
2015-04-15 00:42:44 +00:00
end
if not _OPTIONS["no-curl"] then
include "contrib/mbedtls"
include "contrib/curl"
end
2015-07-24 07:59:37 +00:00
2017-06-25 15:57:53 +00:00
group "Binary Modules"
include "binmodules/example"
if not _OPTIONS["no-luasocket"] then
include "binmodules/luasocket"
end
2017-06-25 15:57:53 +00:00
--
-- A more thorough cleanup.
--
if _ACTION == "clean" then
os.rmdir("bin")
os.rmdir("build")
end