aboutsummaryrefslogtreecommitdiff
path: root/build2/cc/utility
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-05-01 18:24:31 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-05-01 19:30:26 +0300
commit70317569c6dcd9809ed4a8c425777e653ec6ca08 (patch)
tree07a538b296933e9e2a1f81088f8fcc8da3f749ad /build2/cc/utility
parentcbec9ea8841c8a58b2d50bb628b28aea7a6fe179 (diff)
Add hxx extension for headers
Diffstat (limited to 'build2/cc/utility')
-rw-r--r--build2/cc/utility51
1 files changed, 0 insertions, 51 deletions
diff --git a/build2/cc/utility b/build2/cc/utility
deleted file mode 100644
index ee3cb81..0000000
--- a/build2/cc/utility
+++ /dev/null
@@ -1,51 +0,0 @@
-// file : build2/cc/utility -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef BUILD2_CC_UTILITY
-#define BUILD2_CC_UTILITY
-
-#include <build2/types>
-#include <build2/utility>
-
-#include <build2/target>
-#include <build2/bin/target>
-
-#include <build2/cc/types>
-
-namespace build2
-{
- struct variable;
-
- namespace cc
- {
- // Compile/link output type.
- //
- otype
- compile_type (const target&);
-
- otype
- link_type (const target&);
-
- // Library link order.
- //
- // The reason we pass scope and not the target is because this function is
- // called not only for exe/lib but also for obj as part of the library
- // meta-information protocol implementation. Normally the bin.*.lib values
- // will be project-wide. With this scheme they can be customized on the
- // per-directory basis but not per-target which means all exe/lib in the
- // same directory have to have the same link order.
- //
- lorder
- link_order (const scope& base, otype);
-
- // Given the link order return the library member (liba or libs) to link.
- //
- const target&
- link_member (const bin::lib&, action, lorder);
- }
-}
-
-#include <build2/cc/utility.ixx>
-
-#endif // BUILD2_CC_UTILITY