summaryrefslogtreecommitdiff
path: root/mysql-client/build
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-client/build')
-rw-r--r--mysql-client/build/.gitignore3
-rw-r--r--mysql-client/build/bootstrap.build10
-rw-r--r--mysql-client/build/export.build9
-rw-r--r--mysql-client/build/root.build25
4 files changed, 47 insertions, 0 deletions
diff --git a/mysql-client/build/.gitignore b/mysql-client/build/.gitignore
new file mode 100644
index 0000000..4a730a3
--- /dev/null
+++ b/mysql-client/build/.gitignore
@@ -0,0 +1,3 @@
+config.build
+root/
+bootstrap/
diff --git a/mysql-client/build/bootstrap.build b/mysql-client/build/bootstrap.build
new file mode 100644
index 0000000..4d085a3
--- /dev/null
+++ b/mysql-client/build/bootstrap.build
@@ -0,0 +1,10 @@
+# file : build/bootstrap.build
+# license : GPLv2 with Universal FOSS Exception; see accompanying LICENSE file
+
+project = mysql-client
+
+using version
+using config
+using dist
+using test
+using install
diff --git a/mysql-client/build/export.build b/mysql-client/build/export.build
new file mode 100644
index 0000000..3cef2f9
--- /dev/null
+++ b/mysql-client/build/export.build
@@ -0,0 +1,9 @@
+# file : build/export.build
+# license : GPLv2 with Universal FOSS Exception; see accompanying LICENSE file
+
+$out_root/
+{
+ include mysql/
+}
+
+export $out_root/mysql/$import.target
diff --git a/mysql-client/build/root.build b/mysql-client/build/root.build
new file mode 100644
index 0000000..077c13f
--- /dev/null
+++ b/mysql-client/build/root.build
@@ -0,0 +1,25 @@
+# file : build/root.build
+# license : GPLv2 with Universal FOSS Exception; see accompanying LICENSE file
+
+using in
+
+using c
+
+h{*}: extension = h
+c{*}: extension = c
+
+# Note that the implementation uses C++14 internally, with some used
+# constructs being deprecated/removed from the later versions of the standard.
+#
+cxx.std = 14
+
+using cxx
+
+hxx{*}: extension = h
+cxx{*}: extension = cc
+
+if ($c.target.system == 'win32-msvc')
+ cc.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS
+
+if ($c.class == 'msvc')
+ cc.coptions += /wd4251 /wd4275 /wd4800