From c30f5add7fe57e2587e244f45900e08bb22423ed Mon Sep 17 00:00:00 2001 From: Christian Thaeter Date: Sat, 25 Aug 2012 13:23:41 +0200 Subject: [PATCH] Add 'none' target to scons 'scons none' will not build anythinf but runs the configuration checks to determine if the system and libraries are sane to build Lumiera, this will be used in builddrone later. --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index d2468b374..8fe12e998 100644 --- a/SConstruct +++ b/SConstruct @@ -77,6 +77,7 @@ env.Default('build') env.Alias ('all', build + testsuite + doxydoc) env.Alias ('doc', doxydoc) +env.Alias ('none') env.Alias('install', gui) env.Alias('install', '$DESTDIR')