aboutsummaryrefslogtreecommitdiff
path: root/build2/cc
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-08-24 16:37:29 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-08-28 15:01:48 +0300
commitea24f530048cbce0c5335ca3fd3632c8ce34315a (patch)
tree3f7153cad1c3e34da5e992fe53db104512d7af71 /build2/cc
parentd07521c67db21aa02dddf9615dce9f9f3dfe784c (diff)
Move bin build system module to separate library
Diffstat (limited to 'build2/cc')
-rw-r--r--build2/cc/common.hxx2
-rw-r--r--build2/cc/compile-rule.cxx2
-rw-r--r--build2/cc/gcc.cxx2
-rw-r--r--build2/cc/install-rule.cxx2
-rw-r--r--build2/cc/link-rule.cxx2
-rw-r--r--build2/cc/module.cxx2
-rw-r--r--build2/cc/msvc.cxx2
-rw-r--r--build2/cc/pkgconfig.cxx2
-rw-r--r--build2/cc/utility.cxx4
-rw-r--r--build2/cc/utility.hxx2
-rw-r--r--build2/cc/windows-rpath.cxx2
11 files changed, 12 insertions, 12 deletions
diff --git a/build2/cc/common.hxx b/build2/cc/common.hxx
index b24eb7d..527c31a 100644
--- a/build2/cc/common.hxx
+++ b/build2/cc/common.hxx
@@ -11,7 +11,7 @@
#include <libbuild2/context.hxx>
#include <libbuild2/variable.hxx>
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/target.hxx>
#include <build2/cc/types.hxx>
#include <build2/cc/guess.hxx> // compiler_id
diff --git a/build2/cc/compile-rule.cxx b/build2/cc/compile-rule.cxx
index fa43533..5d4c838 100644
--- a/build2/cc/compile-rule.cxx
+++ b/build2/cc/compile-rule.cxx
@@ -18,7 +18,7 @@
#include <libbuild2/config/utility.hxx> // create_project()
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/target.hxx>
#include <build2/cc/parser.hxx>
#include <build2/cc/target.hxx> // h
diff --git a/build2/cc/gcc.cxx b/build2/cc/gcc.cxx
index e6d7101..a979b2d 100644
--- a/build2/cc/gcc.cxx
+++ b/build2/cc/gcc.cxx
@@ -8,7 +8,7 @@
#include <libbuild2/filesystem.hxx>
#include <libbuild2/diagnostics.hxx>
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/target.hxx>
#include <build2/cc/types.hxx>
diff --git a/build2/cc/install-rule.cxx b/build2/cc/install-rule.cxx
index 9e52501..876e780 100644
--- a/build2/cc/install-rule.cxx
+++ b/build2/cc/install-rule.cxx
@@ -6,7 +6,7 @@
#include <libbuild2/algorithm.hxx>
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/target.hxx>
#include <build2/cc/utility.hxx>
#include <build2/cc/link-rule.hxx> // match()
diff --git a/build2/cc/link-rule.cxx b/build2/cc/link-rule.cxx
index ce5fce9..adf76d1 100644
--- a/build2/cc/link-rule.cxx
+++ b/build2/cc/link-rule.cxx
@@ -18,7 +18,7 @@
#include <libbuild2/filesystem.hxx>
#include <libbuild2/diagnostics.hxx>
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/target.hxx>
#include <build2/cc/target.hxx> // c, pc*
#include <build2/cc/utility.hxx>
diff --git a/build2/cc/module.cxx b/build2/cc/module.cxx
index bd853cc..478cabe 100644
--- a/build2/cc/module.cxx
+++ b/build2/cc/module.cxx
@@ -9,7 +9,7 @@
#include <libbuild2/scope.hxx>
#include <libbuild2/diagnostics.hxx>
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/target.hxx>
#include <build2/cc/target.hxx> // pc*
diff --git a/build2/cc/msvc.cxx b/build2/cc/msvc.cxx
index 7d8c3f5..886975a 100644
--- a/build2/cc/msvc.cxx
+++ b/build2/cc/msvc.cxx
@@ -11,7 +11,7 @@
#include <libbuild2/filesystem.hxx>
#include <libbuild2/diagnostics.hxx>
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/target.hxx>
#include <build2/cc/types.hxx>
diff --git a/build2/cc/pkgconfig.cxx b/build2/cc/pkgconfig.cxx
index 3b4c711..0ebf818 100644
--- a/build2/cc/pkgconfig.cxx
+++ b/build2/cc/pkgconfig.cxx
@@ -19,7 +19,7 @@
#include <libbuild2/install/utility.hxx>
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/target.hxx>
#include <build2/cc/types.hxx>
#include <build2/cc/target.hxx> // pc
diff --git a/build2/cc/utility.cxx b/build2/cc/utility.cxx
index e9d4ce3..f17d1b0 100644
--- a/build2/cc/utility.cxx
+++ b/build2/cc/utility.cxx
@@ -8,8 +8,8 @@
#include <libbuild2/variable.hxx>
#include <libbuild2/algorithm.hxx> // search()
-#include <build2/bin/rule.hxx>
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/rule.hxx>
+#include <libbuild2/bin/target.hxx>
using namespace std;
diff --git a/build2/cc/utility.hxx b/build2/cc/utility.hxx
index 6222b5f..002dea7 100644
--- a/build2/cc/utility.hxx
+++ b/build2/cc/utility.hxx
@@ -9,7 +9,7 @@
#include <libbuild2/utility.hxx>
#include <libbuild2/target.hxx>
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/target.hxx>
#include <build2/cc/types.hxx>
diff --git a/build2/cc/windows-rpath.cxx b/build2/cc/windows-rpath.cxx
index 4478f7d..c4ef358 100644
--- a/build2/cc/windows-rpath.cxx
+++ b/build2/cc/windows-rpath.cxx
@@ -11,7 +11,7 @@
#include <libbuild2/filesystem.hxx>
#include <libbuild2/diagnostics.hxx>
-#include <build2/bin/target.hxx>
+#include <libbuild2/bin/target.hxx>
#include <build2/cc/link-rule.hxx>