From 5529b296834965afd9736b941aa2c094ff2f4648 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 2 Sep 2021 20:22:58 +0200 Subject: Rename project to ctor. --- cppbuild.cc | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 cppbuild.cc (limited to 'cppbuild.cc') diff --git a/cppbuild.cc b/cppbuild.cc deleted file mode 100644 index 5c6d885..0000000 --- a/cppbuild.cc +++ /dev/null @@ -1,39 +0,0 @@ -#include "libcppbuild.h" - -namespace -{ -BuildConfigurations cppbuildConfigs() -{ - return - { - { - .type = TargetType::StaticLibrary, - .target = "libcppbuild.a", - .sources = { - "src/build.cc", - "src/configure.cc", - "src/execute.cc", - "src/libcppbuild.cc", - "src/rebuild.cc", - "src/task.cc", - "src/task_ar.cc", - "src/task_cc.cc", - "src/task_ld.cc", - "src/task_so.cc", - "src/tasks.cc", - }, - .cxxflags = { - "-std=c++17", - "-O3", - "-s", - "-Wall", - "-Werror", - "-Isrc", - }, - } - }; -} -} - -// Convenience macro -REG(cppbuildConfigs); -- cgit v1.2.3