summaryrefslogtreecommitdiff
path: root/ctor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ctor.cc')
-rw-r--r--ctor.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/ctor.cc b/ctor.cc
index c8c7cff..c9faa5e 100644
--- a/ctor.cc
+++ b/ctor.cc
@@ -1,29 +1,32 @@
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
-#include <libctor.h>
+#include <ctor.h>
namespace
{
-BuildConfigurations ctorConfigs()
+ctor::build_configurations ctorConfigs(const ctor::settings& settings)
{
return
{
{
- .type = TargetType::StaticLibrary,
+ .type = ctor::target_type::static_library,
.target = "libctor.a",
.sources = {
"src/build.cc",
"src/configure.cc",
"src/execute.cc",
+ "src/externals_manual.cc",
"src/libctor.cc",
"src/rebuild.cc",
"src/task.cc",
"src/task_ar.cc",
+ "src/task_fn.cc",
"src/task_cc.cc",
"src/task_ld.cc",
"src/task_so.cc",
"src/tasks.cc",
+ "src/tools.cc",
"src/util.cc",
"src/unittest.cc",
},