2008-10-31 18:38:05 +00:00
|
|
|
--
|
2013-09-10 20:24:39 +00:00
|
|
|
-- Premake 5.x build configuration script
|
|
|
|
-- Use this script to configure the project with Premake4.
|
2013-02-07 16:04:01 +00:00
|
|
|
--
|
2008-10-31 18:38:05 +00:00
|
|
|
|
2008-12-27 13:33:10 +00:00
|
|
|
--
|
2008-12-27 13:34:58 +00:00
|
|
|
-- Define the project. Put the release configuration first so it will be the
|
2013-02-07 16:04:01 +00:00
|
|
|
-- default when folks build using the makefile. That way they don't have to
|
2008-12-27 13:34:58 +00:00
|
|
|
-- worry about the /scripts argument and all that.
|
2008-12-27 13:33:10 +00:00
|
|
|
--
|
2008-10-31 18:38:05 +00:00
|
|
|
|
2013-09-10 20:24:39 +00:00
|
|
|
solution "Premake5"
|
2008-12-27 13:33:10 +00:00
|
|
|
configurations { "Release", "Debug" }
|
2008-12-27 13:34:58 +00:00
|
|
|
location ( _OPTIONS["to"] )
|
2013-02-07 16:04:01 +00:00
|
|
|
|
2013-09-10 20:24:39 +00:00
|
|
|
project "Premake5"
|
|
|
|
targetname "premake5"
|
2008-12-27 13:33:10 +00:00
|
|
|
language "C"
|
|
|
|
kind "ConsoleApp"
|
2013-02-07 16:04:01 +00:00
|
|
|
flags { "No64BitChecks", "ExtraWarnings", "StaticRuntime" }
|
2015-10-05 17:11:15 +00:00
|
|
|
includedirs { "src/host/lua/src" }
|
2008-12-27 13:33:10 +00:00
|
|
|
|
2013-02-07 16:04:01 +00:00
|
|
|
files
|
2008-12-27 13:33:10 +00:00
|
|
|
{
|
2013-02-07 16:04:01 +00:00
|
|
|
"*.txt", "**.lua",
|
2010-12-23 19:06:11 +00:00
|
|
|
"src/**.h", "src/**.c",
|
|
|
|
"src/host/scripts.c"
|
2008-12-27 13:33:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
excludes
|
|
|
|
{
|
2015-10-05 17:11:15 +00:00
|
|
|
"src/host/lua/src/lauxlib.c",
|
|
|
|
"src/host/lua/src/lua.c",
|
|
|
|
"src/host/lua/src/luac.c",
|
|
|
|
"src/host/lua/src/print.c",
|
|
|
|
"src/host/lua/**.lua",
|
|
|
|
"src/host/lua/etc/*.c"
|
2008-12-27 13:33:10 +00:00
|
|
|
}
|
2013-02-07 16:04:01 +00:00
|
|
|
|
2008-12-27 13:33:10 +00:00
|
|
|
configuration "Debug"
|
|
|
|
targetdir "bin/debug"
|
|
|
|
defines "_DEBUG"
|
|
|
|
flags { "Symbols" }
|
2013-02-07 16:04:01 +00:00
|
|
|
|
2008-12-27 13:33:10 +00:00
|
|
|
configuration "Release"
|
|
|
|
targetdir "bin/release"
|
|
|
|
defines "NDEBUG"
|
2009-01-13 19:33:21 +00:00
|
|
|
flags { "OptimizeSize" }
|
2008-12-27 13:33:10 +00:00
|
|
|
|
|
|
|
configuration "vs*"
|
|
|
|
defines { "_CRT_SECURE_NO_WARNINGS" }
|
2013-02-07 16:04:01 +00:00
|
|
|
|
2011-03-12 17:03:10 +00:00
|
|
|
configuration "vs2005"
|
|
|
|
defines {"_CRT_SECURE_NO_DEPRECATE" }
|
2008-10-31 18:38:05 +00:00
|
|
|
|
2012-01-04 20:01:22 +00:00
|
|
|
configuration "windows"
|
|
|
|
links { "ole32" }
|
|
|
|
|
2013-04-19 21:00:47 +00:00
|
|
|
configuration "linux or bsd or hurd"
|
2009-12-09 19:12:00 +00:00
|
|
|
defines { "LUA_USE_POSIX", "LUA_USE_DLOPEN" }
|
2013-02-07 16:04:01 +00:00
|
|
|
links { "m" }
|
|
|
|
linkoptions { "-rdynamic" }
|
|
|
|
|
2013-09-10 20:24:39 +00:00
|
|
|
configuration "linux or hurd"
|
2015-07-31 22:59:53 +00:00
|
|
|
links { "dl", "rt" }
|
2013-04-19 21:00:47 +00:00
|
|
|
|
2009-01-11 21:50:11 +00:00
|
|
|
configuration "macosx"
|
|
|
|
defines { "LUA_USE_MACOSX" }
|
2011-03-26 21:12:10 +00:00
|
|
|
links { "CoreServices.framework" }
|
2013-02-07 16:04:01 +00:00
|
|
|
|
2010-03-17 15:45:08 +00:00
|
|
|
configuration { "macosx", "gmake" }
|
2013-04-03 14:36:53 +00:00
|
|
|
-- toolset "clang" (not until a 5.0 binary is available)
|
2011-08-01 19:21:55 +00:00
|
|
|
buildoptions { "-mmacosx-version-min=10.4" }
|
|
|
|
linkoptions { "-mmacosx-version-min=10.4" }
|
2008-10-31 18:38:05 +00:00
|
|
|
|
2010-07-20 21:03:21 +00:00
|
|
|
configuration { "solaris" }
|
|
|
|
linkoptions { "-Wl,--export-dynamic" }
|
2010-01-13 23:29:21 +00:00
|
|
|
|
2013-03-28 15:19:34 +00:00
|
|
|
configuration "aix"
|
|
|
|
defines { "LUA_USE_POSIX", "LUA_USE_DLOPEN" }
|
|
|
|
links { "m" }
|
2008-10-31 18:38:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
--
|
2008-12-27 13:34:58 +00:00
|
|
|
-- A more thorough cleanup.
|
2008-10-31 18:38:05 +00:00
|
|
|
--
|
2008-12-27 13:33:10 +00:00
|
|
|
|
2008-12-27 13:34:58 +00:00
|
|
|
if _ACTION == "clean" then
|
|
|
|
os.rmdir("bin")
|
|
|
|
os.rmdir("build")
|
|
|
|
end
|
2013-02-07 16:04:01 +00:00
|
|
|
|
|
|
|
|
2009-01-19 01:45:47 +00:00
|
|
|
|
2008-10-31 18:38:05 +00:00
|
|
|
--
|
2009-07-16 15:20:15 +00:00
|
|
|
-- Use the --to=path option to control where the project files get generated. I use
|
|
|
|
-- this to create project files for each supported toolset, each in their own folder,
|
|
|
|
-- in preparation for deployment.
|
2008-10-31 18:38:05 +00:00
|
|
|
--
|
|
|
|
|
2009-07-16 15:20:15 +00:00
|
|
|
newoption {
|
|
|
|
trigger = "to",
|
|
|
|
value = "path",
|
|
|
|
description = "Set the output location for the generated files"
|
|
|
|
}
|
2015-02-25 20:50:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- This new embed action is slightly hardcoded for the 4.x executable, and is
|
|
|
|
-- really only intended to get folks bootstrapped on to 5.x
|
|
|
|
--
|
|
|
|
|
|
|
|
newaction {
|
|
|
|
trigger = "embed",
|
|
|
|
description = "Embed scripts in scripts.c; required before release builds",
|
|
|
|
execute = function ()
|
|
|
|
_MAIN_SCRIPT_DIR = os.getcwd()
|
|
|
|
_SCRIPT_DIR = path.join(_MAIN_SCRIPT_DIR, "scripts")
|
|
|
|
dofile("scripts/embed.lua")
|
|
|
|
end
|
|
|
|
}
|