summaryrefslogtreecommitdiff
path: root/ctor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ctor.cc')
-rw-r--r--ctor.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/ctor.cc b/ctor.cc
index d795ff9..d0d53d8 100644
--- a/ctor.cc
+++ b/ctor.cc
@@ -1,16 +1,16 @@
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
-#include <libctor.h>
+#include <ctor.h>
namespace
{
-BuildConfigurations ctorConfigs(const Settings& settings)
+ctor::build_configurations ctorConfigs(const ctor::settings& settings)
{
return
{
{
- .type = TargetType::StaticLibrary,
+ .system = ctor::output_system::build,
.target = "libctor.a",
.sources = {
"src/build.cc",
@@ -26,6 +26,7 @@ BuildConfigurations ctorConfigs(const Settings& settings)
"src/task_ld.cc",
"src/task_so.cc",
"src/tasks.cc",
+ "src/tools.cc",
"src/util.cc",
"src/unittest.cc",
},