From c3669cb137ba2690fb896ff33c5f2975fa0b41a3 Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Thu, 8 Jun 2006 22:33:59 +0000 Subject: [PATCH] "update-workspaces.bat --without-tests", particularly for the autobuilder while everything crashes and requires manual clicking of OK buttons This was SVN commit r3984. --- build/premake/premake.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/premake/premake.lua b/build/premake/premake.lua index f027bf2cb5..f6dcbc4281 100755 --- a/build/premake/premake.lua +++ b/build/premake/premake.lua @@ -1,5 +1,6 @@ addoption("atlas", "Include Atlas scenario editor packages") addoption("outpath", "Location for generated project files") +addoption("without-tests", "Disable generation of test projects") dofile("functions.lua") dofile("extern_libs.lua") @@ -637,4 +638,6 @@ if options["atlas"] then setup_atlas_frontends() end -setup_tests() +if not options["without-tests"] then + setup_tests() +end