2008-10-31 18:38:05 +00:00
|
|
|
--
|
|
|
|
-- Premake 4.x build configuration script
|
|
|
|
--
|
|
|
|
|
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
|
|
|
|
-- default when folks build using the makefile. That way they don't have to
|
|
|
|
-- worry about the /scripts argument and all that.
|
2008-12-27 13:33:10 +00:00
|
|
|
--
|
2008-10-31 18:38:05 +00:00
|
|
|
|
2008-12-27 13:33:10 +00:00
|
|
|
solution "Premake4"
|
|
|
|
configurations { "Release", "Debug" }
|
2008-12-27 13:34:58 +00:00
|
|
|
location ( _OPTIONS["to"] )
|
2008-12-27 13:33:10 +00:00
|
|
|
|
|
|
|
project "Premake4"
|
|
|
|
targetname "premake4"
|
|
|
|
language "C"
|
|
|
|
kind "ConsoleApp"
|
2009-01-04 16:09:14 +00:00
|
|
|
flags { "No64BitChecks", "ExtraWarnings" }
|
2008-12-30 01:15:38 +00:00
|
|
|
includedirs { "src/host/lua-5.1.4/src" }
|
2008-12-27 13:33:10 +00:00
|
|
|
|
|
|
|
files
|
|
|
|
{
|
2009-12-08 20:25:35 +00:00
|
|
|
"*.txt", "**.lua", "src/**.h", "src/**.c",
|
2008-12-27 13:33:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
excludes
|
|
|
|
{
|
|
|
|
"src/premake.lua",
|
2008-12-30 01:15:38 +00:00
|
|
|
"src/host/lua-5.1.4/src/lua.c",
|
|
|
|
"src/host/lua-5.1.4/src/luac.c",
|
|
|
|
"src/host/lua-5.1.4/src/print.c",
|
|
|
|
"src/host/lua-5.1.4/**.lua",
|
|
|
|
"src/host/lua-5.1.4/etc/*.c"
|
2008-12-27 13:33:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
configuration "Debug"
|
|
|
|
targetdir "bin/debug"
|
|
|
|
defines "_DEBUG"
|
|
|
|
flags { "Symbols" }
|
|
|
|
|
|
|
|
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" }
|
2008-10-31 18:38:05 +00:00
|
|
|
|
2008-12-30 01:58:19 +00:00
|
|
|
configuration "linux"
|
2009-12-09 19:12:00 +00:00
|
|
|
defines { "LUA_USE_POSIX", "LUA_USE_DLOPEN" }
|
2009-01-11 21:50:11 +00:00
|
|
|
links { "m", "dl" }
|
|
|
|
|
|
|
|
configuration "macosx"
|
|
|
|
defines { "LUA_USE_MACOSX" }
|
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
|
|
|
|
|
|
|
|
|
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"
|
|
|
|
}
|
|
|
|
|
2009-01-19 01:45:47 +00:00
|
|
|
|
2009-07-16 15:20:15 +00:00
|
|
|
|
|
|
|
--
|
|
|
|
-- Use the embed action to convert all of the Lua scripts into C strings, which
|
|
|
|
-- can then be built into the executable. Always embed the scripts before creating
|
|
|
|
-- a release build.
|
|
|
|
--
|
|
|
|
|
|
|
|
dofile("scripts/embed.lua")
|
2009-01-19 01:45:47 +00:00
|
|
|
|
2009-07-16 15:20:15 +00:00
|
|
|
newaction {
|
|
|
|
trigger = "embed",
|
2009-01-19 01:45:47 +00:00
|
|
|
description = "Embed scripts in scripts.c; required before release builds",
|
2009-07-16 15:20:15 +00:00
|
|
|
execute = doembed
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Use the release action to prepare source and binary packages for a new release.
|
|
|
|
-- This action isn't complete yet; a release still requires some manual work.
|
|
|
|
--
|
|
|
|
|
|
|
|
|
|
|
|
dofile("scripts/release.lua")
|
|
|
|
|
|
|
|
newaction {
|
|
|
|
trigger = "release",
|
|
|
|
description = "Prepare a new release (incomplete)",
|
|
|
|
execute = dorelease
|
2008-10-31 18:38:05 +00:00
|
|
|
}
|