improve static tree construction

This commit is contained in:
Irlan
2017-06-06 16:02:48 -03:00
parent 4ff1e7947f
commit 8503c356a6
7 changed files with 144 additions and 139 deletions

View File

@ -226,7 +226,7 @@ if os.is "windows" then
newaction
{
trigger = "solution",
trigger = "solution_vs2015",
description = "Generate solution",
execute = function ()
os.execute ( "premake5 clean" )
@ -234,6 +234,16 @@ if os.is "windows" then
end
}
newaction
{
trigger = "solution_vs2017",
description = "Generate solution",
execute = function ()
os.execute ( "premake5 clean" )
os.execute ( "premake5 vs2017" )
end
}
newaction
{
trigger = "doc",