From 3680c8c90cc15ffb5139ef2b3d8bfc001c6329d8 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 2 Aug 2017 13:58:57 +0300 Subject: Add support for build2-aware installation --- odb/pgsql/buildfile | 17 ++++++++++------- odb/pgsql/details/build2/config-stub.h | 6 ++++++ odb/pgsql/details/build2/config-vc-stub.h | 6 ++++++ odb/pgsql/version-build2-stub.hxx | 5 +++++ 4 files changed, 27 insertions(+), 7 deletions(-) create mode 100644 odb/pgsql/details/build2/config-stub.h create mode 100644 odb/pgsql/details/build2/config-vc-stub.h create mode 100644 odb/pgsql/version-build2-stub.hxx (limited to 'odb') diff --git a/odb/pgsql/buildfile b/odb/pgsql/buildfile index bd502ad..a2d9147 100644 --- a/odb/pgsql/buildfile +++ b/odb/pgsql/buildfile @@ -60,21 +60,24 @@ install_include = [dir_path] include/odb/pgsql/ {hxx ixx txx}{*}: install = $install_include {hxx ixx txx}{*}: install.subdirs = true -# We want these to be picked up even when LIBODB_PGSQL_BUILD2 is not defined. +# We want these to be picked up whether LIBODB_PGSQL_BUILD2 is defined or not. # -hxx{version}@./: install = false -hxx{version-build2}: install = $install_include/version.hxx +hxx{version}@./: install = false +hxx{version-build2}: install = $install_include/version.hxx +hxx{version-build2-stub}@./: install = $install_include/version-build2.hxx details/build2/: { + h{*}: install = false + if ($cxx.id == "msvc") { - h{config}@./: install = false - h{config-vc}@./: install = $install_include/details/ + h{config-vc}@./: install = $install_include/details/ + h{config-vc-stub}@./: install = $install_include/details/build2/config-vc.h } else { - h{config}@./: install = $install_include/details/ - h{config-vc}@./: install = false + h{config}@./: install = $install_include/details/ + h{config-stub}@./: install = $install_include/details/build2/config.h } } diff --git a/odb/pgsql/details/build2/config-stub.h b/odb/pgsql/details/build2/config-stub.h new file mode 100644 index 0000000..3d7b3bc --- /dev/null +++ b/odb/pgsql/details/build2/config-stub.h @@ -0,0 +1,6 @@ +/* file : odb/pgsql/details/build2/config-stub.h + * copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC + * license : GNU GPL v2; see accompanying LICENSE file + */ + +#include diff --git a/odb/pgsql/details/build2/config-vc-stub.h b/odb/pgsql/details/build2/config-vc-stub.h new file mode 100644 index 0000000..7e13275 --- /dev/null +++ b/odb/pgsql/details/build2/config-vc-stub.h @@ -0,0 +1,6 @@ +/* file : odb/pgsql/details/build2/config-vc-stub.h + * copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC + * license : GNU GPL v2; see accompanying LICENSE file + */ + +#include diff --git a/odb/pgsql/version-build2-stub.hxx b/odb/pgsql/version-build2-stub.hxx new file mode 100644 index 0000000..80d5790 --- /dev/null +++ b/odb/pgsql/version-build2-stub.hxx @@ -0,0 +1,5 @@ +// file : odb/pgsql/version-build2-stub.hxx +// copyright : Copyright (c) 2005-2017 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#include -- cgit v1.1