Migrate boost unit test to google test with cmake (ctest)
[anna.git] / test / time / SConscript
index 21d24cf..5db2a84 100644 (file)
@@ -1,6 +1,6 @@
 Import ('env')
 
-# To avoid other libraries accumulation (boost testing, i.e.)
+# To avoid other libraries accumulation:
 localEnv = env.Clone()
 
 # See http://www.scons.org/doc/2.0.1/HTML/scons-user/c1809.html
@@ -21,6 +21,6 @@ libpath_time = current_directory.replace (context, 'source/time/');
 
 localEnv.Append(LIBPATH = [libpath_core, libpath_xml, libpath_time])
 
-result = localEnv.Program ('anna_time_test', Glob ('*.cpp'))
+result = localEnv.Program ('anna_test_time', Glob ('*.cpp'))
 
 Return ('result')