X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=test%2Ftime%2FSConscript;fp=test%2Ftime%2FSConscript;h=0000000000000000000000000000000000000000;hb=ec9c52668a43af61eb0c4e1f72bc69db78378e86;hp=5db2a8441b7dd2d67e7e29b4ccd159c7b30a5c8d;hpb=63c74af5519ae3db82627b9cd3b36bb2cfa3bd72;p=anna.git diff --git a/test/time/SConscript b/test/time/SConscript deleted file mode 100644 index 5db2a84..0000000 --- a/test/time/SConscript +++ /dev/null @@ -1,26 +0,0 @@ -Import ('env') - -# To avoid other libraries accumulation: -localEnv = env.Clone() - -# See http://www.scons.org/doc/2.0.1/HTML/scons-user/c1809.html -# about merging flags -boost_library = { 'LIBS' : 'boost_unit_test_framework' } -localEnv.MergeFlags (boost_library) - -anna_library = { 'LIBS' : [ 'anna_time', 'anna_xml', 'anna_core' ] } -localEnv.MergeFlags (anna_library) - -pwd = Dir ('.').abspath; -current_directory = str (pwd); - -context = "test/time/" -libpath_core = current_directory.replace (context, 'source/core/'); -libpath_xml = current_directory.replace (context, 'source/xml/'); -libpath_time = current_directory.replace (context, 'source/time/'); - -localEnv.Append(LIBPATH = [libpath_core, libpath_xml, libpath_time]) - -result = localEnv.Program ('anna_test_time', Glob ('*.cpp')) - -Return ('result')