From f5b09df9c88d49c95fd0c0ef7b3670b40634ca5c Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 27 May 2022 09:50:35 +0200 Subject: WIP: automatic externals --- test/ctor.cc | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'test/ctor.cc') diff --git a/test/ctor.cc b/test/ctor.cc index c24ded7..fd97c80 100644 --- a/test/ctor.cc +++ b/test/ctor.cc @@ -67,7 +67,9 @@ BuildConfigurations ctorTestConfigs(const Settings& settings) "../src/build.cc", "../src/configure.cc", "../src/execute.cc", + "../src/externals_manual.cc", "../src/rebuild.cc", + "../src/search.cc", "../src/tasks.cc", "../src/task.cc", "../src/task_ar.cc", @@ -76,7 +78,6 @@ BuildConfigurations ctorTestConfigs(const Settings& settings) "../src/task_ld.cc", "../src/task_so.cc", "../src/util.cc", - "../src/externals_manual.cc", }, .flags = { .cxxflags = { @@ -86,6 +87,23 @@ BuildConfigurations ctorTestConfigs(const Settings& settings) .ldflags = { "-pthread" }, }, }, + { + .type = TargetType::UnitTest, + .target = "search_test", + .sources = { + "../src/search.cc", + "search_test.cc", + "testmain.cc", + }, + .flags = { + .cxxflags = { + "-std=c++20", "-O3", "-s", "-Wall", "-Werror", + "-I../src", "-Iuunit", + "-DOUTPUT=\"search\"", + }, + .ldflags = { "-pthread" }, + }, + }, }; } } -- cgit v1.2.3