premake/samples/project/premake4.lua

45 lines
774 B
Lua

solution "PremakeTestbox"
configurations { "Debug", "Release" }
-- solution level configuration
configuration "Debug"
targetdir "bin/debug"
flags { "Symbols" }
defines { "_DEBUG", "DEBUG" }
configuration "Release"
targetdir "bin/release"
flags { "Optimize" }
defines { "NDEBUG" }
-- include all the projects
include "CppConsoleApp"
include "CsConsoleApp"
include "CppWindowedApp"
include "CppSharedLib"
include "CsSharedLib"
include "CppStaticLib"
-- add to the built-in clean action
if _ACTION == "clean" then
os.rmdir("bin")
end
-- add a new install action
newaction {
trigger = "install",
description = "Install the project",
execute = function ()
os.copyfile("premake4.lua", "../premake4.lua")
end
}