X-Git-Url: https://git.teslayout.com/public/public/public/?p=anna.git;a=blobdiff_plain;f=example%2Fcore%2FregularExpression%2FSConscript;h=9a31d444a42f35e0ee47b558043f4b140ce484f3;hp=42231922d0f8f5878231e65c05d66c2ea664bb88;hb=63c74af5519ae3db82627b9cd3b36bb2cfa3bd72;hpb=4e12ac57e93c052f716a6305ad8fc099c45899d1 diff --git a/example/core/regularExpression/SConscript b/example/core/regularExpression/SConscript index 4223192..9a31d44 100644 --- a/example/core/regularExpression/SConscript +++ b/example/core/regularExpression/SConscript @@ -1,7 +1,9 @@ Import ('env') # Process ################################################################# -pName = "example_core_regularExpression" +#pName = "example__" +bnames = Dir('..').abspath.rsplit('/', 2) +pName = "example_" + bnames[-2] + "_" + bnames[-1] pPath = pName.replace("_", "/") + "/" # Anna modules ############################################################ @@ -18,7 +20,7 @@ anna_rlibs = list(anna_libs) anna_rlibs.reverse() # Libraries ############################################################### -# To avoid other libraries accumulation (boost testing, i.e.): +# To avoid other libraries accumulation: localEnv = env.Clone() anna_library = { 'LIBS' : anna_rlibs }