Migrate boost unit test to google test with cmake (ctest)
[anna.git] / test / core / SConscript
index f10ba20..8b742c8 100644 (file)
@@ -8,12 +8,19 @@ env.MergeFlags (boost_library)
 anna_library = { 'LIBS' : 'anna_core' }
 env.MergeFlags (anna_library)
 
+#system_library = { 'LIBS' : 'boost_program_options' }
+#env.MergeFlags (system_library)
+
 pwd = Dir ('.').abspath;
 current_directory = str (pwd);
 
 libpath = current_directory.replace ('test/', 'source/');
 env.Append (LIBPATH = [libpath])
 
-result = env.Program ('anna_core_test', Glob ('*.cpp'))
+result = env.Program ('anna_test_core', Glob ('*.cpp'))
 
 Return ('result')
+
+
+
+