aboutsummaryrefslogtreecommitdiff
path: root/odb/qt
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-02-18 13:01:12 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-02-18 13:01:12 +0200
commitaf50e2603fd0f877d0f96da1562b0deda0590b70 (patch)
treec81af5e2565aca994aaf37b0bf6694c50cb52eee /odb/qt
parentd72ebf3ae3a638cefd8b11ae897eb491a19cac12 (diff)
Add support for building with build2
Diffstat (limited to 'odb/qt')
-rw-r--r--odb/qt/buildfile82
-rw-r--r--odb/qt/details/build2/config-stub.h6
-rw-r--r--odb/qt/details/build2/config-vc-stub.h6
-rw-r--r--odb/qt/details/build2/config-vc.h16
-rw-r--r--odb/qt/details/build2/config.h18
-rw-r--r--odb/qt/details/config-vc.h6
-rw-r--r--odb/qt/details/config.hxx11
-rw-r--r--odb/qt/details/export.hxx39
-rw-r--r--odb/qt/makefile2
-rw-r--r--odb/qt/version-build2-stub.hxx5
-rw-r--r--odb/qt/version-build2.hxx0
-rw-r--r--odb/qt/version-build2.hxx.in44
-rw-r--r--odb/qt/version.hxx11
13 files changed, 241 insertions, 5 deletions
diff --git a/odb/qt/buildfile b/odb/qt/buildfile
new file mode 100644
index 0000000..4092c51
--- /dev/null
+++ b/odb/qt/buildfile
@@ -0,0 +1,82 @@
+# file : odb/qt/buildfile
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+../
+{
+ define options: file
+ options{*}: extension = options
+
+ # Install into the odb/qt/ subdirectory of, say, /usr/include/ recreating
+ # subdirectories.
+ #
+ {hxx ixx txx options}{*}: install = include/odb/
+ {hxx ixx txx options}{*}: install.subdirs = true
+
+ qt/
+ {
+ import int_libs = libodb%lib{odb}
+ imp_libs =
+
+ lib{odb-qt}: {hxx ixx txx cxx}{** -version-build2} {hxx}{version-build2} \
+ details/build2/{h}{*} \
+ options{**} ../options{qt} \
+ $imp_libs $int_libs
+
+ # Include the generated version header into the distribution (so that we
+ # don't pick up an installed one) and don't remove it when cleaning in src
+ # (so that clean results in a state identical to distributed).
+ #
+ hxx{version-build2}: in{version-build2} $src_root/manifest
+ hxx{version-build2}: dist = true
+ hxx{version-build2}: clean = ($src_root != $out_root)
+
+ # For pre-releases use the complete version to make sure they cannot be used
+ # in place of another pre-release or the final version.
+ #
+ if $version.pre_release
+ lib{odb-qt}: bin.lib.version = @"-$version.project_id"
+ else
+ lib{odb-qt}: bin.lib.version = @"-$version.major.$version.minor"
+
+ cxx.poptions =+ "-I$out_root" "-I$src_root" -DLIBODB_QT_BUILD2
+ obja{*}: cxx.poptions += -DLIBODB_QT_STATIC_BUILD
+ objs{*}: cxx.poptions += -DLIBODB_QT_SHARED_BUILD
+
+ lib{odb-qt}: cxx.export.poptions = "-I$out_root" "-I$src_root" \
+ -DLIBODB_QT_BUILD2
+
+ liba{odb-qt}: cxx.export.poptions += -DLIBODB_QT_STATIC
+ libs{odb-qt}: cxx.export.poptions += -DLIBODB_QT_SHARED
+
+ lib{odb-qt}: cxx.export.libs = $int_libs
+
+
+ # Installation tweaks.
+ #
+ install_include = [dir_path] include/odb/qt/
+
+ # We want these to be picked up whether LIBODB_QT_BUILD2 is defined or
+ # not.
+ #
+ 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.class == 'msvc')
+ {
+ 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-stub}@./: install = $install_include/details/build2/config.h
+ }
+ }
+ }
+}
diff --git a/odb/qt/details/build2/config-stub.h b/odb/qt/details/build2/config-stub.h
new file mode 100644
index 0000000..7d724a4
--- /dev/null
+++ b/odb/qt/details/build2/config-stub.h
@@ -0,0 +1,6 @@
+/* file : odb/qt/details/build2/config-stub.h
+ * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+ * license : GNU GPL v2; see accompanying LICENSE file
+ */
+
+#include <odb/qt/details/config.h>
diff --git a/odb/qt/details/build2/config-vc-stub.h b/odb/qt/details/build2/config-vc-stub.h
new file mode 100644
index 0000000..c4051f8
--- /dev/null
+++ b/odb/qt/details/build2/config-vc-stub.h
@@ -0,0 +1,6 @@
+/* file : odb/qt/details/build2/config-vc-stub.h
+ * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+ * license : GNU GPL v2; see accompanying LICENSE file
+ */
+
+#include <odb/qt/details/config-vc.h>
diff --git a/odb/qt/details/build2/config-vc.h b/odb/qt/details/build2/config-vc.h
new file mode 100644
index 0000000..43f7d6a
--- /dev/null
+++ b/odb/qt/details/build2/config-vc.h
@@ -0,0 +1,16 @@
+/* file : odb/qt/details/build2/config-vc.h
+ * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+ * license : GNU GPL v2; see accompanying LICENSE file
+ */
+
+/* Configuration file for Windows/VC++ for the build2 build. */
+
+#ifndef ODB_QT_DETAILS_CONFIG_VC_H
+#define ODB_QT_DETAILS_CONFIG_VC_H
+
+/* Define LIBODB_QT_BUILD2 for the installed case. */
+#ifndef LIBODB_QT_BUILD2
+# define LIBODB_QT_BUILD2
+#endif
+
+#endif /* ODB_QT_DETAILS_CONFIG_VC_H */
diff --git a/odb/qt/details/build2/config.h b/odb/qt/details/build2/config.h
new file mode 100644
index 0000000..a864e08
--- /dev/null
+++ b/odb/qt/details/build2/config.h
@@ -0,0 +1,18 @@
+/* file : odb/qt/details/build2/config.h
+ * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+ * license : GNU GPL v2; see accompanying LICENSE file
+ */
+
+/* Static configuration file for the build2 build. The installed case
+ (when LIBODB_QT_BUILD2 is not necessarily defined) is the only
+ reason we have it. */
+
+#ifndef ODB_QT_DETAILS_CONFIG_H
+#define ODB_QT_DETAILS_CONFIG_H
+
+/* Define LIBODB_QT_BUILD2 for the installed case. */
+#ifndef LIBODB_QT_BUILD2
+# define LIBODB_QT_BUILD2
+#endif
+
+#endif /* ODB_QT_DETAILS_CONFIG_H */
diff --git a/odb/qt/details/config-vc.h b/odb/qt/details/config-vc.h
new file mode 100644
index 0000000..db08247
--- /dev/null
+++ b/odb/qt/details/config-vc.h
@@ -0,0 +1,6 @@
+/* file : odb/qt/details/config-vc.h
+ * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+ * license : GNU GPL v2; see accompanying LICENSE file
+ */
+
+/* Dummy configuration file for Windows/VC++. */
diff --git a/odb/qt/details/config.hxx b/odb/qt/details/config.hxx
index dbc4346..08030bd 100644
--- a/odb/qt/details/config.hxx
+++ b/odb/qt/details/config.hxx
@@ -7,8 +7,6 @@
// no pre
-#ifdef _MSC_VER
-#elif defined(ODB_COMPILER)
// Qt5 may complain if we are building without -fPIC. Instead of asking the
// user to pass one of these options to the ODB compiler (which can, BTW, be
// done with -x -fPIC, for example, if one is not using the Qt profile), we
@@ -20,6 +18,7 @@
// directly. This file appears to be present in all the versions starting with
// Qt 4.0.
//
+#ifdef ODB_COMPILER
# if defined(__ELF__) && !defined(__PIC__)
# include <QtCore/qconfig.h> // QT_REDUCE_RELOCATIONS
# ifdef QT_REDUCE_RELOCATIONS
@@ -27,8 +26,12 @@
# endif
# endif
# define LIBODB_QT_STATIC_LIB
-#else
-# include <odb/qt/details/config.h>
+#elif !defined(LIBODB_QT_BUILD2)
+# ifdef _MSC_VER
+# include <odb/qt/details/config-vc.h>
+# else
+# include <odb/qt/details/config.h>
+# endif
#endif
// no post
diff --git a/odb/qt/details/export.hxx b/odb/qt/details/export.hxx
index 51bf1f4..9b93df5 100644
--- a/odb/qt/details/export.hxx
+++ b/odb/qt/details/export.hxx
@@ -9,6 +9,43 @@
#include <odb/qt/details/config.hxx>
+// Normally we don't export class templates (but do complete specializations),
+// inline functions, and classes with only inline member functions. Exporting
+// classes that inherit from non-exported/imported bases (e.g., std::string)
+// will end up badly. The only known workarounds are to not inherit or to not
+// export. Also, MinGW GCC doesn't like seeing non-exported function being
+// used before their inline definition. The workaround is to reorder code. In
+// the end it's all trial and error.
+
+#ifdef LIBODB_QT_BUILD2
+
+#if defined(LIBODB_QT_STATIC) // Using static.
+# define LIBODB_QT_EXPORT
+#elif defined(LIBODB_QT_STATIC_BUILD) // Building static.
+# define LIBODB_QT_EXPORT
+#elif defined(LIBODB_QT_SHARED) // Using shared.
+# ifdef _WIN32
+# define LIBODB_QT_EXPORT __declspec(dllimport)
+# else
+# define LIBODB_QT_EXPORT
+# endif
+#elif defined(LIBODB_QT_SHARED_BUILD) // Building shared.
+# ifdef _WIN32
+# define LIBODB_QT_EXPORT __declspec(dllexport)
+# else
+# define LIBODB_QT_EXPORT
+# endif
+#else
+// If none of the above macros are defined, then we assume we are being used
+// by some third-party build system that cannot/doesn't signal the library
+// type. Note that this fallback works for both static and shared but in case
+// of shared will be sub-optimal compared to having dllimport.
+//
+# define LIBODB_QT_EXPORT // Using static or shared.
+#endif
+
+#else // LIBODB_QT_BUILD2
+
#ifdef LIBODB_QT_STATIC_LIB
# define LIBODB_QT_EXPORT
#else
@@ -35,6 +72,8 @@
# endif
#endif
+#endif // LIBODB_QT_BUILD2
+
#include <odb/post.hxx>
#endif // ODB_QT_DETAILS_EXPORT_HXX
diff --git a/odb/qt/makefile b/odb/qt/makefile
index 9a99fee..64b06cd 100644
--- a/odb/qt/makefile
+++ b/odb/qt/makefile
@@ -75,7 +75,7 @@ $(dist): export interface_version = $(shell sed -e \
's/^\([0-9]*\.[0-9]*\).*/\1/' $(src_root)/version)
$(dist):
- $(call dist-data,$(sources) $(headers) $(options) details/config.h.in)
+ $(call dist-data,$(sources) $(headers) $(options) details/config.h.in details/config-vc.h)
$(call meta-vc8proj,$(src_base)/libodb-qt4-vc8.vcproj)
$(call meta-vc9proj,$(src_base)/libodb-qt4-vc9.vcproj)
$(call meta-vc9proj,$(src_base)/libodb-qt5-vc9.vcproj)
diff --git a/odb/qt/version-build2-stub.hxx b/odb/qt/version-build2-stub.hxx
new file mode 100644
index 0000000..bf1e6e7
--- /dev/null
+++ b/odb/qt/version-build2-stub.hxx
@@ -0,0 +1,5 @@
+// file : odb/qt/version-build2-stub.hxx
+// copyright : Copyright (c) 2005-2019 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#include <odb/qt/version.hxx>
diff --git a/odb/qt/version-build2.hxx b/odb/qt/version-build2.hxx
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/odb/qt/version-build2.hxx
diff --git a/odb/qt/version-build2.hxx.in b/odb/qt/version-build2.hxx.in
new file mode 100644
index 0000000..332be97
--- /dev/null
+++ b/odb/qt/version-build2.hxx.in
@@ -0,0 +1,44 @@
+// file : odb/qt/version-build2.hxx.in
+// copyright : Copyright (c) 2005-2019 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef LIBODB_QT_VERSION // Note: using the version macro itself.
+
+// Note: using build2 standard versioning scheme. The numeric version format
+// is AAABBBCCCDDDE where:
+//
+// AAA - major version number
+// BBB - minor version number
+// CCC - bugfix version number
+// DDD - alpha / beta (DDD + 500) version number
+// E - final (0) / snapshot (1)
+//
+// When DDDE is not 0, 1 is subtracted from AAABBBCCC. For example:
+//
+// Version AAABBBCCCDDDE
+//
+// 0.1.0 0000010000000
+// 0.1.2 0000010010000
+// 1.2.3 0010020030000
+// 2.2.0-a.1 0020019990010
+// 3.0.0-b.2 0029999995020
+// 2.2.0-a.1.z 0020019990011
+//
+#define LIBODB_QT_VERSION $libodb_qt.version.project_number$ULL
+#define LIBODB_QT_VERSION_STR "$libodb_qt.version.project$"
+#define LIBODB_QT_VERSION_ID "$libodb_qt.version.project_id$"
+
+#define LIBODB_QT_VERSION_MAJOR $libodb_qt.version.major$
+#define LIBODB_QT_VERSION_MINOR $libodb_qt.version.minor$
+#define LIBODB_QT_VERSION_PATCH $libodb_qt.version.patch$
+
+#define LIBODB_QT_PRE_RELEASE $libodb_qt.version.pre_release$
+
+#define LIBODB_QT_SNAPSHOT $libodb_qt.version.snapshot_sn$ULL
+#define LIBODB_QT_SNAPSHOT_ID "$libodb_qt.version.snapshot_id$"
+
+#include <odb/version.hxx>
+
+$libodb.check(LIBODB_VERSION, LIBODB_SNAPSHOT)$
+
+#endif // LIBODB_QT_VERSION
diff --git a/odb/qt/version.hxx b/odb/qt/version.hxx
index 5bea4c2..ba8c1b6 100644
--- a/odb/qt/version.hxx
+++ b/odb/qt/version.hxx
@@ -2,6 +2,16 @@
// copyright : Copyright (c) 2005-2019 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
+#ifdef LIBODB_QT_BUILD2
+# include <odb/qt/version-build2.hxx>
+
+// @@ TODO: need to derive automatically (it is also hardcoded in *.options).
+//
+#define ODB_QT_VERSION 2046000
+#define ODB_QT_VERSION_STR "2.5.0-b.10"
+
+#else
+
#ifndef ODB_QT_VERSION_HXX
#define ODB_QT_VERSION_HXX
@@ -49,3 +59,4 @@
#include <odb/post.hxx>
#endif // ODB_QT_VERSION_HXX
+#endif // LIBODB_QT_BUILD2