summaryrefslogtreecommitdiff
path: root/qt
diff options
context:
space:
mode:
Diffstat (limited to 'qt')
-rw-r--r--qt/Makefile.am26
-rw-r--r--qt/build.bat129
-rw-r--r--qt/common/Makefile.am5
-rw-r--r--qt/common/basic/makefile134
-rw-r--r--qt/common/basic/test.std0
-rw-r--r--qt/common/containers/basics/makefile134
-rw-r--r--qt/common/containers/basics/test.std0
-rw-r--r--qt/common/containers/change-tracking/makefile134
-rw-r--r--qt/common/containers/change-tracking/test.std0
-rw-r--r--qt/common/makefile61
-rw-r--r--qt/common/smart-ptr/makefile134
-rw-r--r--qt/common/smart-ptr/test.std0
-rw-r--r--qt/common/template/Makefile.am31
-rw-r--r--qt/common/template/makefile134
-rw-r--r--qt/common/template/test.std0
-rw-r--r--qt/common/test.bat79
-rw-r--r--qt/makefile38
-rw-r--r--qt/mssql/Makefile.am5
-rw-r--r--qt/mssql/basic/makefile125
-rw-r--r--qt/mssql/basic/test.std0
-rw-r--r--qt/mssql/date-time/makefile125
-rw-r--r--qt/mssql/date-time/test.std0
-rw-r--r--qt/mssql/makefile46
-rw-r--r--qt/mssql/template/Makefile.am34
-rw-r--r--qt/mssql/template/makefile119
-rw-r--r--qt/mssql/template/test.std0
-rw-r--r--qt/mssql/test.bat68
-rw-r--r--qt/mysql/Makefile.am5
-rw-r--r--qt/mysql/basic/makefile125
-rw-r--r--qt/mysql/basic/test.std0
-rw-r--r--qt/mysql/date-time/makefile125
-rw-r--r--qt/mysql/date-time/test.std0
-rw-r--r--qt/mysql/makefile46
-rw-r--r--qt/mysql/template/Makefile.am34
-rw-r--r--qt/mysql/template/makefile119
-rw-r--r--qt/mysql/template/test.std0
-rw-r--r--qt/mysql/test.bat68
-rw-r--r--qt/oracle/Makefile.am5
-rw-r--r--qt/oracle/basic/makefile125
-rw-r--r--qt/oracle/basic/test.std0
-rw-r--r--qt/oracle/date-time/makefile125
-rw-r--r--qt/oracle/date-time/test.std0
-rw-r--r--qt/oracle/makefile46
-rw-r--r--qt/oracle/template/Makefile.am34
-rw-r--r--qt/oracle/template/makefile119
-rw-r--r--qt/oracle/template/test.std0
-rw-r--r--qt/oracle/test.bat68
-rw-r--r--qt/pgsql/Makefile.am5
-rw-r--r--qt/pgsql/basic/makefile125
-rw-r--r--qt/pgsql/basic/test.std0
-rw-r--r--qt/pgsql/date-time/makefile125
-rw-r--r--qt/pgsql/date-time/test.std0
-rw-r--r--qt/pgsql/makefile46
-rw-r--r--qt/pgsql/template/Makefile.am34
-rw-r--r--qt/pgsql/template/makefile119
-rw-r--r--qt/pgsql/template/test.std0
-rw-r--r--qt/pgsql/test.bat68
-rw-r--r--qt/sqlite/Makefile.am5
-rw-r--r--qt/sqlite/basic/makefile125
-rw-r--r--qt/sqlite/basic/test.std0
-rw-r--r--qt/sqlite/date-time/makefile125
-rw-r--r--qt/sqlite/date-time/test.std0
-rw-r--r--qt/sqlite/makefile46
-rw-r--r--qt/sqlite/template/Makefile.am34
-rw-r--r--qt/sqlite/template/makefile119
-rw-r--r--qt/sqlite/template/test.std0
-rw-r--r--qt/sqlite/test.bat68
67 files changed, 0 insertions, 3649 deletions
diff --git a/qt/Makefile.am b/qt/Makefile.am
deleted file mode 100644
index 7edbd44..0000000
--- a/qt/Makefile.am
+++ /dev/null
@@ -1,26 +0,0 @@
-# file : qt/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-SUBDIRS = common
-
-if DATABASE_MYSQL
-SUBDIRS += mysql
-endif
-
-if DATABASE_SQLITE
-SUBDIRS += sqlite
-endif
-
-if DATABASE_PGSQL
-SUBDIRS += pgsql
-endif
-
-if DATABASE_ORACLE
-SUBDIRS += oracle
-endif
-
-if DATABASE_MSSQL
-SUBDIRS += mssql
-endif
-
-EXTRA_DIST = __file__(extra_dist)
diff --git a/qt/build.bat b/qt/build.bat
deleted file mode 100644
index 97b9330..0000000
--- a/qt/build.bat
+++ /dev/null
@@ -1,129 +0,0 @@
-@echo off
-rem file : qt/build.bat
-rem license : GNU GPL v2; see accompanying LICENSE file
-
-rem
-rem Build Qt tests using the VC++ batch mode compilation.
-rem
-rem build.bat database qt-version vc-version conf plat [/Build|/Clean|/Rebuild]
-rem
-rem conf: {Debug,Release}|all
-rem plat: {Win32,x64}|all
-rem
-
-setlocal
-
-if "_%1_" == "__" (
- echo no database specified
- goto usage
-)
-
-if "_%2_" == "__" (
- echo no Qt version specified
- goto usage
-)
-
-if "_%3_" == "__" (
- echo no VC++ version specified
- goto usage
-)
-
-if "_%~4_" == "__" (
- echo no configuration specified
- goto usage
-)
-
-if "_%~5_" == "__" (
- echo no platform specified
- goto usage
-)
-
-set "failed="
-
-if "_%2_" == "_4_" set "qtver=4"
-if "_%2_" == "_5_" set "qtver=5"
-
-if "_%qtver%_" == "__" (
- echo unknown Qt version %2
- goto usage
-)
-
-if "_%3_" == "_8_" set "vcver=8"
-if "_%3_" == "_9_" set "vcver=9"
-if "_%3_" == "_10_" set "vcver=10"
-if "_%3_" == "_11_" set "vcver=11"
-if "_%3_" == "_12_" set "vcver=12"
-
-if "_%vcver%_" == "__" (
- echo unknown VC++ version %3
- goto usage
-)
-
-set "confs=%~4"
-set "plats=%~5"
-
-if "_%confs%_" == "_all_" set "confs=Debug Release"
-if "_%plats%_" == "_all_" set "plats=Win32 x64"
-
-set "action=%6"
-if "_%action%_" == "__" set "action=/Build"
-
-set "devenv=%DEVENV%"
-if "_%devenv%_" == "__" set "devenv=devenv.com"
-
-goto start
-
-rem
-rem %1 - solution name
-rem %2 - configuration to build
-rem %3 - platform to build
-rem
-:run_build
- echo.
- echo building qt/%1 %3 %2
- "%devenv%" %1 %action% "%2|%3" 2>&1
- if errorlevel 1 set "failed=%failed% qt/%1\%3\%2"
-goto :eof
-
-:start
-
-for %%d in (%1) do (
- for %%c in (%confs%) do (
- for %%p in (%plats%) do (
- call :run_build %%d/qt-%%d-qt%qtver%-vc%vcver%.sln %%c %%p
- )
- )
-)
-
-for %%c in (%confs%) do (
- for %%p in (%plats%) do (
- call :run_build common/qt-common-qt%qtver%-%1-vc%vcver%.sln %%c %%p
- )
-)
-
-if not "_%failed%_" == "__" goto error
-
-echo.
-echo ALL BUILDS SUCCEEDED
-echo.
-goto end
-
-:usage
-echo.
-echo usage: build.bat database qt-version vc-version conf plat [action]
-echo valid configurations are: {Debug,Release}|all
-echo valid platforms are: {Win32,x64}|all
-echo valid actions are: /Build (default), /Clean, and /Rebuild
-echo.
-
-:error
-if not "_%failed%_" == "__" (
- echo.
- for %%t in (%failed%) do echo FAILED: %%t
- echo.
-)
-endlocal
-exit /b 1
-
-:end
-endlocal
diff --git a/qt/common/Makefile.am b/qt/common/Makefile.am
deleted file mode 100644
index 0093f76..0000000
--- a/qt/common/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-# file : qt/common/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-SUBDIRS = __path__(dirs)
-EXTRA_DIST = __file__(extra_dist)
diff --git a/qt/common/basic/makefile b/qt/common/basic/makefile
deleted file mode 100644
index 7b604a4..0000000
--- a/qt/common/basic/makefile
+++ /dev/null
@@ -1,134 +0,0 @@
-# file : qt/common/basic/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --generate-schema --generate-query \
---profile qt/basic --table-prefix qt_basic_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-ifneq ($(db_id),common)
-$(gen): odb_options += --database $(db_id)
-else
-$(gen): odb_options += --multi-database dynamic
-endif
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-name := $(subst /,-,$(subst $(src_root)/qt/common/,,$(src_base)))
-
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(name)
-$(dist): export extra_dist := $(data_dist) \
-$(call vc8projs,$(name)-qt4) \
-$(call vc9projs,$(name)-qt4) $(call vc9projs,$(name)-qt5) \
-$(call vc10projs,$(name)-qt4) $(call vc10projs,$(name)-qt5) \
-$(call vc11projs,$(name)-qt4) $(call vc11projs,$(name)-qt5) \
-$(call vc12projs,$(name)-qt4) $(call vc12projs,$(name)-qt5)
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc9projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc9projs,../template/template-qt5,$(name)-qt5)
- $(call meta-vc10projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc10projs,../template/template-qt5,$(name)-qt5)
- $(call meta-vc11projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc12projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc11projs,../template/template-qt5,$(name)-qt5)
- $(call meta-vc12projs,../template/template-qt5,$(name)-qt5)
-
-# Test.
-#
-ifneq ($(db_id),common)
-$(eval $(call test-rule))
-else
-$(foreach d,$(databases),$(eval $(call test-rule,$d)))
-endif
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/common/basic/test.std b/qt/common/basic/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/common/basic/test.std
+++ /dev/null
diff --git a/qt/common/containers/basics/makefile b/qt/common/containers/basics/makefile
deleted file mode 100644
index efc9da1..0000000
--- a/qt/common/containers/basics/makefile
+++ /dev/null
@@ -1,134 +0,0 @@
-# file : qt/common/containers/basics/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --generate-schema \
---profile qt/containers --profile qt/basic --table-prefix qt_cont_bs_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-ifneq ($(db_id),common)
-$(gen): odb_options += --database $(db_id)
-else
-$(gen): odb_options += --multi-database dynamic
-endif
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-name := $(subst /,-,$(subst $(src_root)/qt/common/,,$(src_base)))
-
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(name)
-$(dist): export extra_dist := $(data_dist) \
-$(call vc8projs,$(name)-qt4) \
-$(call vc9projs,$(name)-qt4) $(call vc9projs,$(name)-qt5) \
-$(call vc10projs,$(name)-qt4) $(call vc10projs,$(name)-qt5) \
-$(call vc11projs,$(name)-qt4) $(call vc11projs,$(name)-qt5) \
-$(call vc12projs,$(name)-qt4) $(call vc12projs,$(name)-qt5)
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../../template/Makefile.am)
- $(call meta-vc8projs,../../template/template-qt4,$(name)-qt4)
- $(call meta-vc9projs,../../template/template-qt4,$(name)-qt4)
- $(call meta-vc9projs,../../template/template-qt5,$(name)-qt5)
- $(call meta-vc10projs,../../template/template-qt4,$(name)-qt4)
- $(call meta-vc10projs,../../template/template-qt5,$(name)-qt5)
- $(call meta-vc11projs,../../template/template-qt4,$(name)-qt4)
- $(call meta-vc12projs,../../template/template-qt4,$(name)-qt4)
- $(call meta-vc11projs,../../template/template-qt5,$(name)-qt5)
- $(call meta-vc12projs,../../template/template-qt5,$(name)-qt5)
-
-# Test.
-#
-ifneq ($(db_id),common)
-$(eval $(call test-rule))
-else
-$(foreach d,$(databases),$(eval $(call test-rule,$d)))
-endif
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/common/containers/basics/test.std b/qt/common/containers/basics/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/common/containers/basics/test.std
+++ /dev/null
diff --git a/qt/common/containers/change-tracking/makefile b/qt/common/containers/change-tracking/makefile
deleted file mode 100644
index 13864c5..0000000
--- a/qt/common/containers/change-tracking/makefile
+++ /dev/null
@@ -1,134 +0,0 @@
-# file : qt/common/containers/change-tracking/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --generate-schema \
---profile qt/containers --profile qt/basic --table-prefix qt_cont_ct_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-ifneq ($(db_id),common)
-$(gen): odb_options += --database $(db_id)
-else
-$(gen): odb_options += --multi-database dynamic
-endif
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-name := $(subst /,-,$(subst $(src_root)/qt/common/,,$(src_base)))
-
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(name)
-$(dist): export extra_dist := $(data_dist) \
-$(call vc8projs,$(name)-qt4) \
-$(call vc9projs,$(name)-qt4) $(call vc9projs,$(name)-qt5) \
-$(call vc10projs,$(name)-qt4) $(call vc10projs,$(name)-qt5) \
-$(call vc11projs,$(name)-qt4) $(call vc11projs,$(name)-qt5) \
-$(call vc12projs,$(name)-qt4) $(call vc12projs,$(name)-qt5)
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../../template/Makefile.am)
- $(call meta-vc8projs,../../template/template-qt4,$(name)-qt4)
- $(call meta-vc9projs,../../template/template-qt4,$(name)-qt4)
- $(call meta-vc9projs,../../template/template-qt5,$(name)-qt5)
- $(call meta-vc10projs,../../template/template-qt4,$(name)-qt4)
- $(call meta-vc10projs,../../template/template-qt5,$(name)-qt5)
- $(call meta-vc11projs,../../template/template-qt4,$(name)-qt4)
- $(call meta-vc12projs,../../template/template-qt4,$(name)-qt4)
- $(call meta-vc11projs,../../template/template-qt5,$(name)-qt5)
- $(call meta-vc12projs,../../template/template-qt5,$(name)-qt5)
-
-# Test.
-#
-ifneq ($(db_id),common)
-$(eval $(call test-rule))
-else
-$(foreach d,$(databases),$(eval $(call test-rule,$d)))
-endif
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/common/containers/change-tracking/test.std b/qt/common/containers/change-tracking/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/common/containers/change-tracking/test.std
+++ /dev/null
diff --git a/qt/common/makefile b/qt/common/makefile
deleted file mode 100644
index 874b374..0000000
--- a/qt/common/makefile
+++ /dev/null
@@ -1,61 +0,0 @@
-# file : qt/common/makefile
-# license : GNU GPL; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
-
-tests := \
-basic \
-containers/basics \
-containers/change-tracking \
-smart-ptr \
-template
-
-all_tests := $(tests)
-build_tests := $(tests)
-
-$(default): $(addprefix $(out_base)/,$(addsuffix /,$(build_tests)))
-
-name := qt-common
-$(dist): name := $(name)
-$(dist): export dirs := $(tests)
-$(dist): export extra_dist := test.bat \
-$(call vc9slns,$(name)-qt4) \
-$(call vc9slns,$(name)-qt4) $(call vc9slns,$(name)-qt5) \
-$(call vc10slns,$(name)-qt4) $(call vc10slns,$(name)-qt5) \
-$(call vc11slns,$(name)-qt4) $(call vc11slns,$(name)-qt5) \
-$(call vc12slns,$(name)-qt4) $(call vc12slns,$(name)-qt5)
-$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(all_tests)))
- $(call meta-automake)
- $(call meta-vc8slns,$(name)-qt4,-qt4)
- $(call meta-vc9slns,$(name)-qt4,-qt4)
- $(call meta-vc9slns,$(name)-qt5,-qt5)
- $(call meta-vc10slns,$(name)-qt4,-qt4)
- $(call meta-vc10slns,$(name)-qt5,-qt5)
- $(call meta-vc11slns,$(name)-qt4,-qt4)
- $(call meta-vc11slns,$(name)-qt5,-qt5)
- $(call meta-vc12slns,$(name)-qt4,-qt4)
- $(call meta-vc12slns,$(name)-qt5,-qt5)
- # Can't have Qt-version specific tests.
- $(call meta-vctest,$(name)-qt4-mysql-vc10.sln,test.bat)
-
-$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(build_tests)))
-
-ifeq ($(db_id),common)
-$(foreach d,$(databases),$(eval $(call db-test-dir,$d,$(tests))))
-endif
-
-$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(all_tests)))
-
-$(call include,$(bld_root)/meta/vc8sln.make)
-$(call include,$(bld_root)/meta/vc9sln.make)
-$(call include,$(bld_root)/meta/vc10sln.make)
-$(call include,$(bld_root)/meta/vc11sln.make)
-$(call include,$(bld_root)/meta/vc12sln.make)
-$(call include,$(bld_root)/meta/vctest.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-ifneq ($(filter $(MAKECMDGOALS),dist clean),)
-$(foreach t,$(all_tests),$(call import,$(src_base)/$t/makefile))
-else
-$(foreach t,$(build_tests),$(call import,$(src_base)/$t/makefile))
-endif
diff --git a/qt/common/smart-ptr/makefile b/qt/common/smart-ptr/makefile
deleted file mode 100644
index c678001..0000000
--- a/qt/common/smart-ptr/makefile
+++ /dev/null
@@ -1,134 +0,0 @@
-# file : qt/common/smart-ptr/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base) -DQWEAKPOINTER_ENABLE_ARROW
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --generate-schema --generate-session \
---profile qt/smart-ptr --table-prefix qt_smart_ptr_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-ifneq ($(db_id),common)
-$(gen): odb_options += --database $(db_id)
-else
-$(gen): odb_options += --multi-database dynamic
-endif
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-name := $(subst /,-,$(subst $(src_root)/qt/common/,,$(src_base)))
-
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(name)
-$(dist): export extra_dist := $(data_dist) \
-$(call vc8projs,$(name)-qt4) \
-$(call vc9projs,$(name)-qt4) $(call vc9projs,$(name)-qt5) \
-$(call vc10projs,$(name)-qt4) $(call vc10projs,$(name)-qt5) \
-$(call vc11projs,$(name)-qt4) $(call vc11projs,$(name)-qt5) \
-$(call vc12projs,$(name)-qt4) $(call vc12projs,$(name)-qt5)
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc9projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc9projs,../template/template-qt5,$(name)-qt5)
- $(call meta-vc10projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc10projs,../template/template-qt5,$(name)-qt5)
- $(call meta-vc11projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc12projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc11projs,../template/template-qt5,$(name)-qt5)
- $(call meta-vc12projs,../template/template-qt5,$(name)-qt5)
-
-# Test.
-#
-ifneq ($(db_id),common)
-$(eval $(call test-rule))
-else
-$(foreach d,$(databases),$(eval $(call test-rule,$d)))
-endif
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/common/smart-ptr/test.std b/qt/common/smart-ptr/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/common/smart-ptr/test.std
+++ /dev/null
diff --git a/qt/common/template/Makefile.am b/qt/common/template/Makefile.am
deleted file mode 100644
index 75652f3..0000000
--- a/qt/common/template/Makefile.am
+++ /dev/null
@@ -1,31 +0,0 @@
-# file : qt/common/template/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-EXTRA_DIST = __file__(extra_dist)
-
-noinst_PROGRAMS = driver
-driver_SOURCES = driver.cxx __path__(extra_sources) __path__(extra_headers)
-LDADD = $(top_builddir)/libcommon/common/libcommon.la
-AM_CPPFLAGS = -I'$(top_builddir)/libcommon' -I'$(top_srcdir)/libcommon'
-AM_CPPFLAGS += -I'$(builddir)' -I'$(srcdir)'
-
-TESTS=$(top_builddir)/tester
-TESTS_ENVIRONMENT=top_builddir=$(top_builddir); export top_builddir;
-
-# ODB compilation.
-#
-driver_SOURCES += test.hxx
-nodist_driver_SOURCES = test-odb.cxx
-BUILT_SOURCES = test-odb.hxx
-CLEANFILES = test-odb.hxx test-odb.ixx test-odb.cxx
-
-ODB = @ODB@
-ODBFLAGS = @ODBFLAGS@
-ODBCPPFLAGS = @ODBCPPFLAGS@
-
-if HAVE_CXX11
-ODBFLAGS += --std c++11
-endif
-
-test-odb.hxx: test.hxx
- $(ODB) $(AM_CPPFLAGS) $(ODBCPPFLAGS) $(CPPFLAGS) $(ODBFLAGS) --database @database@ __value__(odb_options) $<
diff --git a/qt/common/template/makefile b/qt/common/template/makefile
deleted file mode 100644
index afe6b53..0000000
--- a/qt/common/template/makefile
+++ /dev/null
@@ -1,134 +0,0 @@
-# file : qt/common/template/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --generate-schema \
---profile qt/version --table-prefix qt_template_ #@@ CHANGE prefix, profile
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-ifneq ($(db_id),common)
-$(gen): odb_options += --database $(db_id)
-else
-$(gen): odb_options += --multi-database dynamic
-endif
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-name := $(subst /,-,$(subst $(src_root)/qt/common/,,$(src_base)))
-
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(name)
-$(dist): export extra_dist := $(data_dist) \
-$(call vc8projs,$(name)-qt4) \
-$(call vc9projs,$(name)-qt4) $(call vc9projs,$(name)-qt5) \
-$(call vc10projs,$(name)-qt4) $(call vc10projs,$(name)-qt5) \
-$(call vc11projs,$(name)-qt4) $(call vc11projs,$(name)-qt5) \
-$(call vc12projs,$(name)-qt4) $(call vc12projs,$(name)-qt5)
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc9projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc9projs,../template/template-qt5,$(name)-qt5)
- $(call meta-vc10projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc10projs,../template/template-qt5,$(name)-qt5)
- $(call meta-vc11projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc12projs,../template/template-qt4,$(name)-qt4)
- $(call meta-vc11projs,../template/template-qt5,$(name)-qt5)
- $(call meta-vc12projs,../template/template-qt5,$(name)-qt5)
-
-# Test.
-#
-ifneq ($(db_id),common)
-$(eval $(call test-rule))
-else
-$(foreach d,$(databases),$(eval $(call test-rule,$d)))
-endif
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/common/template/test.std b/qt/common/template/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/common/template/test.std
+++ /dev/null
diff --git a/qt/common/test.bat b/qt/common/test.bat
deleted file mode 100644
index 100628f..0000000
--- a/qt/common/test.bat
+++ /dev/null
@@ -1,79 +0,0 @@
-@echo off
-rem file : qt/common/test.bat
-rem license : GNU GPL v2; see accompanying LICENSE file
-
-setlocal
-
-set "tests=__path__(dirs)"
-set "confs=__path__(configurations)"
-set "plats=__path__(platforms)"
-set "curdir=%CD%"
-set "topdir=%curdir%\..\.."
-set "failed="
-
-if "_%1_" == "__" (
- echo no database specified
- goto usage
-)
-
-goto start
-
-rem
-rem %1 - test directory
-rem %2 - configuration
-rem %3 - platform
-rem %4 - database
-rem
-:run_test
- cd %1
-
- if "_%3_" == "_Win32_" (
- set "dir=%2"
- ) else (
- set "dir=%3\%2"
- )
-
- if exist %dir%\driver.exe (
- echo %1\%3\%2
- call %topdir%\tester.bat %4 %2 %3
- if errorlevel 1 (
- set "failed=%failed% %1\%3\%2"
- )
- )
-
- cd %curdir%
-goto :eof
-
-:start
-
-for %%t in (%tests%) do (
- for %%c in (%confs%) do (
- for %%p in (%plats%) do (
- call :run_test %%t %%c %%p %1
- )
- )
-)
-
-if not "_%failed%_" == "__" goto error
-
-echo.
-echo ALL TESTS PASSED
-echo.
-goto end
-
-:usage
-echo.
-echo usage: test.bat database
-echo.
-
-:error
-if not "_%failed%_" == "__" (
- echo.
- for %%t in (%failed%) do echo FAILED: %%t
- echo.
-)
-endlocal
-exit /b 1
-
-:end
-endlocal
diff --git a/qt/makefile b/qt/makefile
deleted file mode 100644
index 4575b34..0000000
--- a/qt/makefile
+++ /dev/null
@@ -1,38 +0,0 @@
-# file : qt/makefile
-# license : GNU GPL; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../build/bootstrap.make
-
-all_dirs := common mysql sqlite pgsql oracle mssql
-dirs := common
-
-# Database-specific tests are not run in the multi-database configuration.
-#
-ifneq ($(db_id),common)
-dirs += $(db_id)
-endif
-
-$(default): $(addprefix $(out_base)/,$(addsuffix /,$(dirs)))
-
-$(dist): export extra_dist := build.bat
-$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(all_dirs)))
- $(call meta-vctest,common/qt-common-qt4-mysql-vc10.sln,build.bat)
- $(call meta-automake)
-
-$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(dirs)))
-
-ifeq ($(db_id),common)
-$(foreach d,$(databases),$(eval $(call db-test-dir,$d,$(dirs))))
-endif
-
-$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(all_dirs)))
-
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vctest.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-ifneq ($(filter $(MAKECMDGOALS),dist clean),)
-$(foreach d,$(all_dirs),$(call import,$(src_base)/$d/makefile))
-else
-$(foreach d,$(dirs),$(call import,$(src_base)/$d/makefile))
-endif
diff --git a/qt/mssql/Makefile.am b/qt/mssql/Makefile.am
deleted file mode 100644
index 3ac285b..0000000
--- a/qt/mssql/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-# file : qt/mssql/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-SUBDIRS = __path__(dirs)
-EXTRA_DIST = __file__(extra_dist)
diff --git a/qt/mssql/basic/makefile b/qt/mssql/basic/makefile
deleted file mode 100644
index c8f1725..0000000
--- a/qt/mssql/basic/makefile
+++ /dev/null
@@ -1,125 +0,0 @@
-# file : qt/mssql/basic/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l:odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database mssql --profile qt/basic \
---generate-schema --table-prefix qt_mssql_basic_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/mssql/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/mssql/basic/test.std b/qt/mssql/basic/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/mssql/basic/test.std
+++ /dev/null
diff --git a/qt/mssql/date-time/makefile b/qt/mssql/date-time/makefile
deleted file mode 100644
index ff52b50..0000000
--- a/qt/mssql/date-time/makefile
+++ /dev/null
@@ -1,125 +0,0 @@
-# file : qt/mssql/date-time/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(common.l) $(odb_qt.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database mssql --profile qt/date-time \
---generate-schema --table-prefix qt_mssql_dt_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/mssql/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/mssql/date-time/test.std b/qt/mssql/date-time/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/mssql/date-time/test.std
+++ /dev/null
diff --git a/qt/mssql/makefile b/qt/mssql/makefile
deleted file mode 100644
index 861cee6..0000000
--- a/qt/mssql/makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-# file : qt/mssql/makefile
-# license : GNU GPL; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
-
-tests := \
-basic \
-date-time \
-template
-
-$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests)))
-
-$(dist): name := qt-mssql
-$(dist): export dirs := $(tests)
-$(dist): export extra_dist := test.bat \
-$(name)-qt4-vc8.sln \
-$(name)-qt4-vc9.sln $(name)-qt5-vc9.sln \
-$(name)-qt4-vc10.sln $(name)-qt5-vc10.sln \
-$(name)-qt4-vc11.sln $(name)-qt5-vc11.sln \
-$(name)-qt4-vc12.sln $(name)-qt5-vc12.sln
-$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests)))
- $(call meta-automake)
- $(call meta-vc8sln1,$(name)-qt4,-qt4)
- $(call meta-vc9sln1,$(name)-qt4,-qt4)
- $(call meta-vc9sln1,$(name)-qt5,-qt5)
- $(call meta-vc10sln1,$(name)-qt4,-qt4)
- $(call meta-vc10sln1,$(name)-qt5,-qt5)
- $(call meta-vc11sln1,$(name)-qt4,-qt4)
- $(call meta-vc11sln1,$(name)-qt5,-qt5)
- $(call meta-vc12sln1,$(name)-qt4,-qt4)
- $(call meta-vc12sln1,$(name)-qt5,-qt5)
- # Can't have Qt-version specific tests.
- $(call meta-vctest,$(name)-qt4-vc10.sln,test.bat)
-
-$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests)))
-$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests)))
-
-$(call include,$(bld_root)/meta/vc8sln.make)
-$(call include,$(bld_root)/meta/vc9sln.make)
-$(call include,$(bld_root)/meta/vc10sln.make)
-$(call include,$(bld_root)/meta/vc11sln.make)
-$(call include,$(bld_root)/meta/vc12sln.make)
-$(call include,$(bld_root)/meta/vctest.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(foreach t,$(tests),$(call import,$(src_base)/$t/makefile))
diff --git a/qt/mssql/template/Makefile.am b/qt/mssql/template/Makefile.am
deleted file mode 100644
index df51831..0000000
--- a/qt/mssql/template/Makefile.am
+++ /dev/null
@@ -1,34 +0,0 @@
-# file : qt/mssql/template/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-EXTRA_DIST = __file__(extra_dist)
-
-noinst_PROGRAMS = driver
-driver_SOURCES = driver.cxx __path__(extra_sources) __path__(extra_headers)
-LDADD = $(top_builddir)/libcommon/common/libcommon.la
-AM_CPPFLAGS = -I'$(top_builddir)/libcommon' -I'$(top_srcdir)/libcommon'
-AM_CPPFLAGS += -I'$(builddir)' -I'$(srcdir)'
-
-TESTS=$(top_builddir)/tester
-TESTS_ENVIRONMENT=top_builddir=$(top_builddir); export top_builddir;
-
-__ifelse__(__value__(odb_options),,,
-
-# ODB compilation.
-#
-driver_SOURCES += test.hxx
-nodist_driver_SOURCES = test-odb.cxx
-BUILT_SOURCES = test-odb.hxx
-CLEANFILES = test-odb.hxx test-odb.ixx test-odb.cxx
-
-ODB = @ODB@
-ODBFLAGS = @ODBFLAGS@
-ODBCPPFLAGS = @ODBCPPFLAGS@
-
-if HAVE_CXX11
-ODBFLAGS += --std c++11
-endif
-
-test-odb.hxx: test.hxx
- $(ODB) $(AM_CPPFLAGS) $(ODBCPPFLAGS) $(CPPFLAGS) $(ODBFLAGS) __value__(odb_options) $<
-)
diff --git a/qt/mssql/template/makefile b/qt/mssql/template/makefile
deleted file mode 100644
index f53ed9f..0000000
--- a/qt/mssql/template/makefile
+++ /dev/null
@@ -1,119 +0,0 @@
-# file : qt/mssql/template/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-#Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database mssql --profile qt \
---generate-schema --table-prefix qt_mssql_template_ #@@ CHANGE THIS
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/mssql/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/mssql/template/test.std b/qt/mssql/template/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/mssql/template/test.std
+++ /dev/null
diff --git a/qt/mssql/test.bat b/qt/mssql/test.bat
deleted file mode 100644
index 6e47030..0000000
--- a/qt/mssql/test.bat
+++ /dev/null
@@ -1,68 +0,0 @@
-@echo off
-rem file : qt/mssql/test.bat
-rem license : GNU GPL v2; see accompanying LICENSE file
-
-setlocal
-
-set "tests=__path__(dirs)"
-set "confs=__path__(configurations)"
-set "plats=__path__(platforms)"
-set "curdir=%CD%"
-set "topdir=%curdir%\..\.."
-set "failed="
-
-goto start
-
-rem
-rem %1 - test directory
-rem %2 - configuration
-rem %3 - platform
-rem
-:run_test
- cd %1
-
- if "_%3_" == "_Win32_" (
- set "dir=%2"
- ) else (
- set "dir=%3\%2"
- )
-
- if exist %dir%\driver.exe (
- echo %1\%3\%2
- call %topdir%\tester.bat mssql %2 %3
- if errorlevel 1 (
- set "failed=%failed% %1\%3\%2"
- )
- )
-
- cd %curdir%
-goto :eof
-
-:start
-
-for %%t in (%tests%) do (
- for %%c in (%confs%) do (
- for %%p in (%plats%) do (
- call :run_test %%t %%c %%p
- )
- )
-)
-
-if not "_%failed%_" == "__" goto error
-
-echo.
-echo ALL TESTS PASSED
-echo.
-goto end
-
-:error
-if not "_%failed%_" == "__" (
- echo.
- for %%t in (%failed%) do echo FAILED: %%t
- echo.
-)
-endlocal
-exit /b 1
-
-:end
-endlocal
diff --git a/qt/mysql/Makefile.am b/qt/mysql/Makefile.am
deleted file mode 100644
index 674dd40..0000000
--- a/qt/mysql/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-# file : qt/mysql/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-SUBDIRS = __path__(dirs)
-EXTRA_DIST = __file__(extra_dist)
diff --git a/qt/mysql/basic/makefile b/qt/mysql/basic/makefile
deleted file mode 100644
index 93696ad..0000000
--- a/qt/mysql/basic/makefile
+++ /dev/null
@@ -1,125 +0,0 @@
-# file : qt/mysql/basic/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l:odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database mysql --profile qt/basic \
---generate-schema --table-prefix qt_mysql_basic_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/mysql/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/mysql/basic/test.std b/qt/mysql/basic/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/mysql/basic/test.std
+++ /dev/null
diff --git a/qt/mysql/date-time/makefile b/qt/mysql/date-time/makefile
deleted file mode 100644
index 1fe52fd..0000000
--- a/qt/mysql/date-time/makefile
+++ /dev/null
@@ -1,125 +0,0 @@
-# file : qt/mysql/date-time/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(common.l) $(odb_qt.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database mysql --generate-schema \
---generate-query --profile qt/date-time --table-prefix qt_mysql_dt_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/mysql/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/mysql/date-time/test.std b/qt/mysql/date-time/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/mysql/date-time/test.std
+++ /dev/null
diff --git a/qt/mysql/makefile b/qt/mysql/makefile
deleted file mode 100644
index ea036fa..0000000
--- a/qt/mysql/makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-# file : qt/mysql/makefile
-# license : GNU GPL; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
-
-tests := \
-basic \
-date-time \
-template
-
-$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests)))
-
-$(dist): name := qt-mysql
-$(dist): export dirs := $(tests)
-$(dist): export extra_dist := test.bat \
-$(name)-qt4-vc8.sln \
-$(name)-qt4-vc9.sln $(name)-qt5-vc9.sln \
-$(name)-qt4-vc10.sln $(name)-qt5-vc10.sln \
-$(name)-qt4-vc11.sln $(name)-qt5-vc11.sln \
-$(name)-qt4-vc12.sln $(name)-qt5-vc12.sln
-$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests)))
- $(call meta-automake)
- $(call meta-vc8sln1,$(name)-qt4,-qt4)
- $(call meta-vc9sln1,$(name)-qt4,-qt4)
- $(call meta-vc9sln1,$(name)-qt5,-qt5)
- $(call meta-vc10sln1,$(name)-qt4,-qt4)
- $(call meta-vc10sln1,$(name)-qt5,-qt5)
- $(call meta-vc11sln1,$(name)-qt4,-qt4)
- $(call meta-vc11sln1,$(name)-qt5,-qt5)
- $(call meta-vc12sln1,$(name)-qt4,-qt4)
- $(call meta-vc12sln1,$(name)-qt5,-qt5)
- # Can't have Qt-version specific tests.
- $(call meta-vctest,$(name)-qt4-vc10.sln,test.bat)
-
-$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests)))
-$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests)))
-
-$(call include,$(bld_root)/meta/vc8sln.make)
-$(call include,$(bld_root)/meta/vc9sln.make)
-$(call include,$(bld_root)/meta/vc10sln.make)
-$(call include,$(bld_root)/meta/vc11sln.make)
-$(call include,$(bld_root)/meta/vc12sln.make)
-$(call include,$(bld_root)/meta/vctest.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(foreach t,$(tests),$(call import,$(src_base)/$t/makefile))
diff --git a/qt/mysql/template/Makefile.am b/qt/mysql/template/Makefile.am
deleted file mode 100644
index 819fe92..0000000
--- a/qt/mysql/template/Makefile.am
+++ /dev/null
@@ -1,34 +0,0 @@
-# file : qt/mysql/template/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-EXTRA_DIST = __file__(extra_dist)
-
-noinst_PROGRAMS = driver
-driver_SOURCES = driver.cxx __path__(extra_sources) __path__(extra_headers)
-LDADD = $(top_builddir)/libcommon/common/libcommon.la
-AM_CPPFLAGS = -I'$(top_builddir)/libcommon' -I'$(top_srcdir)/libcommon'
-AM_CPPFLAGS += -I'$(builddir)' -I'$(srcdir)'
-
-TESTS=$(top_builddir)/tester
-TESTS_ENVIRONMENT=top_builddir=$(top_builddir); export top_builddir;
-
-__ifelse__(__value__(odb_options),,,
-
-# ODB compilation.
-#
-driver_SOURCES += test.hxx
-nodist_driver_SOURCES = test-odb.cxx
-BUILT_SOURCES = test-odb.hxx
-CLEANFILES = test-odb.hxx test-odb.ixx test-odb.cxx
-
-ODB = @ODB@
-ODBFLAGS = @ODBFLAGS@
-ODBCPPFLAGS = @ODBCPPFLAGS@
-
-if HAVE_CXX11
-ODBFLAGS += --std c++11
-endif
-
-test-odb.hxx: test.hxx
- $(ODB) $(AM_CPPFLAGS) $(ODBCPPFLAGS) $(CPPFLAGS) $(ODBFLAGS) __value__(odb_options) $<
-)
diff --git a/qt/mysql/template/makefile b/qt/mysql/template/makefile
deleted file mode 100644
index 267908f..0000000
--- a/qt/mysql/template/makefile
+++ /dev/null
@@ -1,119 +0,0 @@
-# file : qt/mysql/template/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-#Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database mysql --profile qt \
---generate-schema --table-prefix qt_mysql_template_ #@@ CHANGE THIS
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/mysql/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/mysql/template/test.std b/qt/mysql/template/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/mysql/template/test.std
+++ /dev/null
diff --git a/qt/mysql/test.bat b/qt/mysql/test.bat
deleted file mode 100644
index e927529..0000000
--- a/qt/mysql/test.bat
+++ /dev/null
@@ -1,68 +0,0 @@
-@echo off
-rem file : qt/mysql/test.bat
-rem license : GNU GPL v2; see accompanying LICENSE file
-
-setlocal
-
-set "tests=__path__(dirs)"
-set "confs=__path__(configurations)"
-set "plats=__path__(platforms)"
-set "curdir=%CD%"
-set "topdir=%curdir%\..\.."
-set "failed="
-
-goto start
-
-rem
-rem %1 - test directory
-rem %2 - configuration
-rem %3 - platform
-rem
-:run_test
- cd %1
-
- if "_%3_" == "_Win32_" (
- set "dir=%2"
- ) else (
- set "dir=%3\%2"
- )
-
- if exist %dir%\driver.exe (
- echo %1\%3\%2
- call %topdir%\tester.bat mysql %2 %3
- if errorlevel 1 (
- set "failed=%failed% %1\%3\%2"
- )
- )
-
- cd %curdir%
-goto :eof
-
-:start
-
-for %%t in (%tests%) do (
- for %%c in (%confs%) do (
- for %%p in (%plats%) do (
- call :run_test %%t %%c %%p
- )
- )
-)
-
-if not "_%failed%_" == "__" goto error
-
-echo.
-echo ALL TESTS PASSED
-echo.
-goto end
-
-:error
-if not "_%failed%_" == "__" (
- echo.
- for %%t in (%failed%) do echo FAILED: %%t
- echo.
-)
-endlocal
-exit /b 1
-
-:end
-endlocal
diff --git a/qt/oracle/Makefile.am b/qt/oracle/Makefile.am
deleted file mode 100644
index 2a46a58..0000000
--- a/qt/oracle/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-# file : qt/oracle/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-SUBDIRS = __path__(dirs)
-EXTRA_DIST = __file__(extra_dist)
diff --git a/qt/oracle/basic/makefile b/qt/oracle/basic/makefile
deleted file mode 100644
index 32df442..0000000
--- a/qt/oracle/basic/makefile
+++ /dev/null
@@ -1,125 +0,0 @@
-# file : qt/oracle/basic/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l:odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database oracle --profile qt/basic \
---generate-schema --table-prefix qt_oracle_basic_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/oracle/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/oracle/basic/test.std b/qt/oracle/basic/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/oracle/basic/test.std
+++ /dev/null
diff --git a/qt/oracle/date-time/makefile b/qt/oracle/date-time/makefile
deleted file mode 100644
index f985090..0000000
--- a/qt/oracle/date-time/makefile
+++ /dev/null
@@ -1,125 +0,0 @@
-# file : qt/oracle/date-time/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(common.l) $(odb_qt.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database oracle --profile qt/date-time \
---generate-schema --table-prefix qt_oracle_dt_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/oracle/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/oracle/date-time/test.std b/qt/oracle/date-time/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/oracle/date-time/test.std
+++ /dev/null
diff --git a/qt/oracle/makefile b/qt/oracle/makefile
deleted file mode 100644
index 8d99559..0000000
--- a/qt/oracle/makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-# file : qt/oracle/makefile
-# license : GNU GPL; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
-
-tests := \
-basic \
-date-time \
-template
-
-$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests)))
-
-$(dist): name := qt-oracle
-$(dist): export dirs := $(tests)
-$(dist): export extra_dist := test.bat \
-$(name)-qt4-vc8.sln \
-$(name)-qt4-vc9.sln $(name)-qt5-vc9.sln \
-$(name)-qt4-vc10.sln $(name)-qt5-vc10.sln \
-$(name)-qt4-vc11.sln $(name)-qt5-vc11.sln \
-$(name)-qt4-vc12.sln $(name)-qt5-vc12.sln
-$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests)))
- $(call meta-automake)
- $(call meta-vc8sln1,$(name)-qt4,-qt4)
- $(call meta-vc9sln1,$(name)-qt4,-qt4)
- $(call meta-vc9sln1,$(name)-qt5,-qt5)
- $(call meta-vc10sln1,$(name)-qt4,-qt4)
- $(call meta-vc10sln1,$(name)-qt5,-qt5)
- $(call meta-vc11sln1,$(name)-qt4,-qt4)
- $(call meta-vc11sln1,$(name)-qt5,-qt5)
- $(call meta-vc12sln1,$(name)-qt4,-qt4)
- $(call meta-vc12sln1,$(name)-qt5,-qt5)
- # Can't have Qt-version specific tests.
- $(call meta-vctest,$(name)-qt4-vc10.sln,test.bat)
-
-$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests)))
-$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests)))
-
-$(call include,$(bld_root)/meta/vc8sln.make)
-$(call include,$(bld_root)/meta/vc9sln.make)
-$(call include,$(bld_root)/meta/vc10sln.make)
-$(call include,$(bld_root)/meta/vc11sln.make)
-$(call include,$(bld_root)/meta/vc12sln.make)
-$(call include,$(bld_root)/meta/vctest.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(foreach t,$(tests),$(call import,$(src_base)/$t/makefile))
diff --git a/qt/oracle/template/Makefile.am b/qt/oracle/template/Makefile.am
deleted file mode 100644
index 27f30c7..0000000
--- a/qt/oracle/template/Makefile.am
+++ /dev/null
@@ -1,34 +0,0 @@
-# file : qt/oracle/template/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-EXTRA_DIST = __file__(extra_dist)
-
-noinst_PROGRAMS = driver
-driver_SOURCES = driver.cxx __path__(extra_sources) __path__(extra_headers)
-LDADD = $(top_builddir)/libcommon/common/libcommon.la
-AM_CPPFLAGS = -I'$(top_builddir)/libcommon' -I'$(top_srcdir)/libcommon'
-AM_CPPFLAGS += -I'$(builddir)' -I'$(srcdir)'
-
-TESTS=$(top_builddir)/tester
-TESTS_ENVIRONMENT=top_builddir=$(top_builddir); export top_builddir;
-
-__ifelse__(__value__(odb_options),,,
-
-# ODB compilation.
-#
-driver_SOURCES += test.hxx
-nodist_driver_SOURCES = test-odb.cxx
-BUILT_SOURCES = test-odb.hxx
-CLEANFILES = test-odb.hxx test-odb.ixx test-odb.cxx
-
-ODB = @ODB@
-ODBFLAGS = @ODBFLAGS@
-ODBCPPFLAGS = @ODBCPPFLAGS@
-
-if HAVE_CXX11
-ODBFLAGS += --std c++11
-endif
-
-test-odb.hxx: test.hxx
- $(ODB) $(AM_CPPFLAGS) $(ODBCPPFLAGS) $(CPPFLAGS) $(ODBFLAGS) __value__(odb_options) $<
-)
diff --git a/qt/oracle/template/makefile b/qt/oracle/template/makefile
deleted file mode 100644
index 89d2ced..0000000
--- a/qt/oracle/template/makefile
+++ /dev/null
@@ -1,119 +0,0 @@
-# file : qt/oracle/template/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-#Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database oracle --profile qt \
---generate-schema --table-prefix qt_oracle_template_ #@@ CHANGE THIS
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/oracle/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/oracle/template/test.std b/qt/oracle/template/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/oracle/template/test.std
+++ /dev/null
diff --git a/qt/oracle/test.bat b/qt/oracle/test.bat
deleted file mode 100644
index 6a1fd48..0000000
--- a/qt/oracle/test.bat
+++ /dev/null
@@ -1,68 +0,0 @@
-@echo off
-rem file : qt/oracle/test.bat
-rem license : GNU GPL v2; see accompanying LICENSE file
-
-setlocal
-
-set "tests=__path__(dirs)"
-set "confs=__path__(configurations)"
-set "plats=__path__(platforms)"
-set "curdir=%CD%"
-set "topdir=%curdir%\..\.."
-set "failed="
-
-goto start
-
-rem
-rem %1 - test directory
-rem %2 - configuration
-rem %3 - platform
-rem
-:run_test
- cd %1
-
- if "_%3_" == "_Win32_" (
- set "dir=%2"
- ) else (
- set "dir=%3\%2"
- )
-
- if exist %dir%\driver.exe (
- echo %1\%3\%2
- call %topdir%\tester.bat oracle %2 %3
- if errorlevel 1 (
- set "failed=%failed% %1\%3\%2"
- )
- )
-
- cd %curdir%
-goto :eof
-
-:start
-
-for %%t in (%tests%) do (
- for %%c in (%confs%) do (
- for %%p in (%plats%) do (
- call :run_test %%t %%c %%p
- )
- )
-)
-
-if not "_%failed%_" == "__" goto error
-
-echo.
-echo ALL TESTS PASSED
-echo.
-goto end
-
-:error
-if not "_%failed%_" == "__" (
- echo.
- for %%t in (%failed%) do echo FAILED: %%t
- echo.
-)
-endlocal
-exit /b 1
-
-:end
-endlocal
diff --git a/qt/pgsql/Makefile.am b/qt/pgsql/Makefile.am
deleted file mode 100644
index 98b1489..0000000
--- a/qt/pgsql/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-# file : qt/pgsql/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-SUBDIRS = __path__(dirs)
-EXTRA_DIST = __file__(extra_dist)
diff --git a/qt/pgsql/basic/makefile b/qt/pgsql/basic/makefile
deleted file mode 100644
index df5ac74..0000000
--- a/qt/pgsql/basic/makefile
+++ /dev/null
@@ -1,125 +0,0 @@
-# file : qt/pgsql/basic/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l:odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database pgsql --profile qt/basic \
---generate-schema --table-prefix qt_pgsql_basic_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/pgsql/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/pgsql/basic/test.std b/qt/pgsql/basic/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/pgsql/basic/test.std
+++ /dev/null
diff --git a/qt/pgsql/date-time/makefile b/qt/pgsql/date-time/makefile
deleted file mode 100644
index 20b5d10..0000000
--- a/qt/pgsql/date-time/makefile
+++ /dev/null
@@ -1,125 +0,0 @@
-# file : qt/pgsql/date-time/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(common.l) $(odb_qt.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database pgsql --profile qt/date-time \
---generate-schema --table-prefix qt_pgsql_dt_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/pgsql/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/pgsql/date-time/test.std b/qt/pgsql/date-time/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/pgsql/date-time/test.std
+++ /dev/null
diff --git a/qt/pgsql/makefile b/qt/pgsql/makefile
deleted file mode 100644
index 9c9ba58..0000000
--- a/qt/pgsql/makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-# file : qt/pgsql/makefile
-# license : GNU GPL; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
-
-tests := \
-basic \
-date-time \
-template
-
-$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests)))
-
-$(dist): name := qt-pgsql
-$(dist): export dirs := $(tests)
-$(dist): export extra_dist := test.bat \
-$(name)-qt4-vc8.sln \
-$(name)-qt4-vc9.sln $(name)-qt5-vc9.sln \
-$(name)-qt4-vc10.sln $(name)-qt5-vc10.sln \
-$(name)-qt4-vc11.sln $(name)-qt5-vc11.sln \
-$(name)-qt4-vc12.sln $(name)-qt5-vc12.sln
-$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests)))
- $(call meta-automake)
- $(call meta-vc8sln1,$(name)-qt4,-qt4)
- $(call meta-vc9sln1,$(name)-qt4,-qt4)
- $(call meta-vc9sln1,$(name)-qt5,-qt5)
- $(call meta-vc10sln1,$(name)-qt4,-qt4)
- $(call meta-vc10sln1,$(name)-qt5,-qt5)
- $(call meta-vc11sln1,$(name)-qt4,-qt4)
- $(call meta-vc11sln1,$(name)-qt5,-qt5)
- $(call meta-vc12sln1,$(name)-qt4,-qt4)
- $(call meta-vc12sln1,$(name)-qt5,-qt5)
- # Can't have Qt-version specific tests.
- $(call meta-vctest,$(name)-qt4-vc10.sln,test.bat)
-
-$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests)))
-$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests)))
-
-$(call include,$(bld_root)/meta/vc8sln.make)
-$(call include,$(bld_root)/meta/vc9sln.make)
-$(call include,$(bld_root)/meta/vc10sln.make)
-$(call include,$(bld_root)/meta/vc11sln.make)
-$(call include,$(bld_root)/meta/vc12sln.make)
-$(call include,$(bld_root)/meta/vctest.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(foreach t,$(tests),$(call import,$(src_base)/$t/makefile))
diff --git a/qt/pgsql/template/Makefile.am b/qt/pgsql/template/Makefile.am
deleted file mode 100644
index 470ecbf..0000000
--- a/qt/pgsql/template/Makefile.am
+++ /dev/null
@@ -1,34 +0,0 @@
-# file : qt/pgsql/template/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-EXTRA_DIST = __file__(extra_dist)
-
-noinst_PROGRAMS = driver
-driver_SOURCES = driver.cxx __path__(extra_sources) __path__(extra_headers)
-LDADD = $(top_builddir)/libcommon/common/libcommon.la
-AM_CPPFLAGS = -I'$(top_builddir)/libcommon' -I'$(top_srcdir)/libcommon'
-AM_CPPFLAGS += -I'$(builddir)' -I'$(srcdir)'
-
-TESTS=$(top_builddir)/tester
-TESTS_ENVIRONMENT=top_builddir=$(top_builddir); export top_builddir;
-
-__ifelse__(__value__(odb_options),,,
-
-# ODB compilation.
-#
-driver_SOURCES += test.hxx
-nodist_driver_SOURCES = test-odb.cxx
-BUILT_SOURCES = test-odb.hxx
-CLEANFILES = test-odb.hxx test-odb.ixx test-odb.cxx
-
-ODB = @ODB@
-ODBFLAGS = @ODBFLAGS@
-ODBCPPFLAGS = @ODBCPPFLAGS@
-
-if HAVE_CXX11
-ODBFLAGS += --std c++11
-endif
-
-test-odb.hxx: test.hxx
- $(ODB) $(AM_CPPFLAGS) $(ODBCPPFLAGS) $(CPPFLAGS) $(ODBFLAGS) __value__(odb_options) $<
-)
diff --git a/qt/pgsql/template/makefile b/qt/pgsql/template/makefile
deleted file mode 100644
index 22379c4..0000000
--- a/qt/pgsql/template/makefile
+++ /dev/null
@@ -1,119 +0,0 @@
-# file : qt/pgsql/template/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-#Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database pgsql --profile qt \
---generate-schema --table-prefix qt_pgsql_template_ #@@ CHANGE THIS
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/pgsql/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/pgsql/template/test.std b/qt/pgsql/template/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/pgsql/template/test.std
+++ /dev/null
diff --git a/qt/pgsql/test.bat b/qt/pgsql/test.bat
deleted file mode 100644
index 8f144f8..0000000
--- a/qt/pgsql/test.bat
+++ /dev/null
@@ -1,68 +0,0 @@
-@echo off
-rem file : qt/pgsql/test.bat
-rem license : GNU GPL v2; see accompanying LICENSE file
-
-setlocal
-
-set "tests=__path__(dirs)"
-set "confs=__path__(configurations)"
-set "plats=__path__(platforms)"
-set "curdir=%CD%"
-set "topdir=%curdir%\..\.."
-set "failed="
-
-goto start
-
-rem
-rem %1 - test directory
-rem %2 - configuration
-rem %3 - platform
-rem
-:run_test
- cd %1
-
- if "_%3_" == "_Win32_" (
- set "dir=%2"
- ) else (
- set "dir=%3\%2"
- )
-
- if exist %dir%\driver.exe (
- echo %1\%3\%2
- call %topdir%\tester.bat pgsql %2 %3
- if errorlevel 1 (
- set "failed=%failed% %1\%3\%2"
- )
- )
-
- cd %curdir%
-goto :eof
-
-:start
-
-for %%t in (%tests%) do (
- for %%c in (%confs%) do (
- for %%p in (%plats%) do (
- call :run_test %%t %%c %%p
- )
- )
-)
-
-if not "_%failed%_" == "__" goto error
-
-echo.
-echo ALL TESTS PASSED
-echo.
-goto end
-
-:error
-if not "_%failed%_" == "__" (
- echo.
- for %%t in (%failed%) do echo FAILED: %%t
- echo.
-)
-endlocal
-exit /b 1
-
-:end
-endlocal
diff --git a/qt/sqlite/Makefile.am b/qt/sqlite/Makefile.am
deleted file mode 100644
index 0ddfc7d..0000000
--- a/qt/sqlite/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-# file : qt/sqlite/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-SUBDIRS = __path__(dirs)
-EXTRA_DIST = __file__(extra_dist)
diff --git a/qt/sqlite/basic/makefile b/qt/sqlite/basic/makefile
deleted file mode 100644
index 3719c98..0000000
--- a/qt/sqlite/basic/makefile
+++ /dev/null
@@ -1,125 +0,0 @@
-# file : qt/sqlite/basic/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l:odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database sqlite --profile qt/basic \
---generate-schema --table-prefix qt_sqlite_basic_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/sqlite/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-schemaless-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/sqlite/basic/test.std b/qt/sqlite/basic/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/sqlite/basic/test.std
+++ /dev/null
diff --git a/qt/sqlite/date-time/makefile b/qt/sqlite/date-time/makefile
deleted file mode 100644
index ec7c0ea..0000000
--- a/qt/sqlite/date-time/makefile
+++ /dev/null
@@ -1,125 +0,0 @@
-# file : qt/sqlite/date-time/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-$(call import,\
- $(scf_root)/import/libqt/core/stub.make,\
- l: qt_core.l,cpp-options: qt_core.l.cpp-options)
-
-# Build.
-#
-$(driver): $(cxx_obj) $(common.l) $(odb_qt.l) $(qt_core.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database sqlite --profile qt/date-time \
---generate-schema --table-prefix qt_sqlite_dt_
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options) \
-$(qt_core.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/sqlite/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-schemaless-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/sqlite/date-time/test.std b/qt/sqlite/date-time/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/sqlite/date-time/test.std
+++ /dev/null
diff --git a/qt/sqlite/makefile b/qt/sqlite/makefile
deleted file mode 100644
index db8724c..0000000
--- a/qt/sqlite/makefile
+++ /dev/null
@@ -1,46 +0,0 @@
-# file : qt/sqlite/makefile
-# license : GNU GPL; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../build/bootstrap.make
-
-tests := \
-basic \
-date-time \
-template
-
-$(default): $(addprefix $(out_base)/,$(addsuffix /,$(tests)))
-
-$(dist): name := qt-sqlite
-$(dist): export dirs := $(tests)
-$(dist): export extra_dist := test.bat \
-$(name)-qt4-vc8.sln \
-$(name)-qt4-vc9.sln $(name)-qt5-vc9.sln \
-$(name)-qt4-vc10.sln $(name)-qt5-vc10.sln \
-$(name)-qt4-vc11.sln $(name)-qt5-vc11.sln \
-$(name)-qt4-vc12.sln $(name)-qt5-vc12.sln
-$(dist): $(addprefix $(out_base)/,$(addsuffix /.dist,$(tests)))
- $(call meta-automake)
- $(call meta-vc8sln1,$(name)-qt4,-qt4)
- $(call meta-vc9sln1,$(name)-qt4,-qt4)
- $(call meta-vc9sln1,$(name)-qt5,-qt5)
- $(call meta-vc10sln1,$(name)-qt4,-qt4)
- $(call meta-vc10sln1,$(name)-qt5,-qt5)
- $(call meta-vc11sln1,$(name)-qt4,-qt4)
- $(call meta-vc11sln1,$(name)-qt5,-qt5)
- $(call meta-vc12sln1,$(name)-qt4,-qt4)
- $(call meta-vc12sln1,$(name)-qt5,-qt5)
- # Can't have Qt-version specific tests.
- $(call meta-vctest,$(name)-qt4-vc10.sln,test.bat)
-
-$(test): $(addprefix $(out_base)/,$(addsuffix /.test,$(tests)))
-$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(tests)))
-
-$(call include,$(bld_root)/meta/vc8sln.make)
-$(call include,$(bld_root)/meta/vc9sln.make)
-$(call include,$(bld_root)/meta/vc10sln.make)
-$(call include,$(bld_root)/meta/vc11sln.make)
-$(call include,$(bld_root)/meta/vc12sln.make)
-$(call include,$(bld_root)/meta/vctest.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(foreach t,$(tests),$(call import,$(src_base)/$t/makefile))
diff --git a/qt/sqlite/template/Makefile.am b/qt/sqlite/template/Makefile.am
deleted file mode 100644
index d28b0d3..0000000
--- a/qt/sqlite/template/Makefile.am
+++ /dev/null
@@ -1,34 +0,0 @@
-# file : qt/sqlite/template/Makefile.am
-# license : GNU GPL v2; see accompanying LICENSE file
-
-EXTRA_DIST = __file__(extra_dist)
-
-noinst_PROGRAMS = driver
-driver_SOURCES = driver.cxx __path__(extra_sources) __path__(extra_headers)
-LDADD = $(top_builddir)/libcommon/common/libcommon.la
-AM_CPPFLAGS = -I'$(top_builddir)/libcommon' -I'$(top_srcdir)/libcommon'
-AM_CPPFLAGS += -I'$(builddir)' -I'$(srcdir)'
-
-TESTS=$(top_builddir)/tester
-TESTS_ENVIRONMENT=top_builddir=$(top_builddir); export top_builddir;
-
-__ifelse__(__value__(odb_options),,,
-
-# ODB compilation.
-#
-driver_SOURCES += test.hxx
-nodist_driver_SOURCES = test-odb.cxx
-BUILT_SOURCES = test-odb.hxx
-CLEANFILES = test-odb.hxx test-odb.ixx test-odb.cxx
-
-ODB = @ODB@
-ODBFLAGS = @ODBFLAGS@
-ODBCPPFLAGS = @ODBCPPFLAGS@
-
-if HAVE_CXX11
-ODBFLAGS += --std c++11
-endif
-
-test-odb.hxx: test.hxx
- $(ODB) $(AM_CPPFLAGS) $(ODBCPPFLAGS) $(CPPFLAGS) $(ODBFLAGS) __value__(odb_options) $<
-)
diff --git a/qt/sqlite/template/makefile b/qt/sqlite/template/makefile
deleted file mode 100644
index 480429f..0000000
--- a/qt/sqlite/template/makefile
+++ /dev/null
@@ -1,119 +0,0 @@
-# file : qt/sqlite/template/makefile
-# license : GNU GPL v2; see accompanying LICENSE file
-
-include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make
-
-cxx_tun := driver.cxx
-odb_hdr := test.hxx
-genf := $(call odb-gen,$(odb_hdr))
-gen := $(addprefix $(out_base)/,$(genf))
-cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o)) $(filter %.o,$(gen:.cxx=.o))
-cxx_od := $(cxx_obj:.o=.o.d)
-
-common.l := $(out_root)/libcommon/common/common.l
-common.l.cpp-options := $(out_root)/libcommon/common/common.l.cpp-options
-
-# Import.
-#
-$(call import,\
- $(scf_root)/import/odb/stub.make,\
- odb: odb,odb-rules: odb_rules)
-
-$(call import,\
- $(scf_root)/import/libodb-qt/stub.make,\
- l: odb_qt.l,cpp-options: odb_qt.l.cpp-options)
-
-#Build.
-#
-$(driver): $(cxx_obj) $(odb_qt.l) $(common.l)
-$(cxx_obj) $(cxx_od): cpp_options := -I$(out_base) -I$(src_base)
-$(cxx_obj) $(cxx_od): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(gen): $(odb)
-$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database sqlite --profile qt \
---generate-schema --table-prefix qt_sqlite_template_ #@@ CHANGE THIS
-$(gen): cpp_options := -I$(src_base)
-$(gen): $(common.l.cpp-options) $(odb_qt.l.cpp-options)
-
-$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
-
-# Alias for default target.
-#
-$(out_base)/: $(driver)
-
-# Dist
-#
-$(dist): sources := $(cxx_tun)
-$(dist): headers := $(odb_hdr)
-$(dist): data_dist := test.std
-$(dist): export name := $(subst /,-,$(subst $(src_root)/qt/sqlite/,,$(src_base)))
-$(dist): export extra_dist := $(data_dist) \
-$(name)-qt4-vc8.vcproj \
-$(name)-qt4-vc9.vcproj $(name)-qt5-vc9.vcproj \
-$(name)-qt4-vc10.vcxproj $(name)-qt4-vc10.vcxproj.filters \
-$(name)-qt5-vc10.vcxproj $(name)-qt5-vc10.vcxproj.filters \
-$(name)-qt4-vc11.vcxproj $(name)-qt4-vc11.vcxproj.filters \
-$(name)-qt5-vc11.vcxproj $(name)-qt5-vc11.vcxproj.filters \
-$(name)-qt4-vc12.vcxproj $(name)-qt4-vc12.vcxproj.filters \
-$(name)-qt5-vc12.vcxproj $(name)-qt5-vc12.vcxproj.filters
-$(dist):
- $(call dist-data,$(sources) $(headers) $(data_dist))
- $(call meta-automake,../template/Makefile.am)
- $(call meta-vc8proj,../template/template-qt4-vc8.vcproj,$(name)-qt4-vc8.vcproj)
- $(call meta-vc9proj,../template/template-qt4-vc9.vcproj,$(name)-qt4-vc9.vcproj)
- $(call meta-vc9proj,../template/template-qt5-vc9.vcproj,$(name)-qt5-vc9.vcproj)
- $(call meta-vc10proj,../template/template-qt4-vc10.vcxproj,$(name)-qt4-vc10.vcxproj)
- $(call meta-vc10proj,../template/template-qt5-vc10.vcxproj,$(name)-qt5-vc10.vcxproj)
- $(call meta-vc11proj,../template/template-qt4-vc11.vcxproj,$(name)-qt4-vc11.vcxproj)
- $(call meta-vc11proj,../template/template-qt5-vc11.vcxproj,$(name)-qt5-vc11.vcxproj)
- $(call meta-vc12proj,../template/template-qt4-vc12.vcxproj,$(name)-qt4-vc12.vcxproj)
- $(call meta-vc12proj,../template/template-qt5-vc12.vcxproj,$(name)-qt5-vc12.vcxproj)
-
-# Test.
-#
-$(eval $(call test-schemaless-rule))
-
-# Clean.
-#
-$(clean): \
- $(driver).o.clean \
- $(addsuffix .cxx.clean,$(cxx_obj)) \
- $(addsuffix .cxx.clean,$(cxx_od)) \
- $(addsuffix .hxx.clean,$(filter %.cxx,$(gen)))
- $(call message,,rm -f $(out_base)/test.out)
-
-# Generated .gitignore.
-#
-ifeq ($(out_base),$(src_base))
-$(driver): | $(out_base)/.gitignore
-
-$(out_base)/.gitignore: files := driver $(genf)
-$(clean): $(out_base)/.gitignore.clean
-
-$(call include,$(bld_root)/git/gitignore.make)
-endif
-
-# How to.
-#
-$(call include,$(bld_root)/dist.make)
-$(call include,$(bld_root)/meta/vc8proj.make)
-$(call include,$(bld_root)/meta/vc9proj.make)
-$(call include,$(bld_root)/meta/vc10proj.make)
-$(call include,$(bld_root)/meta/vc11proj.make)
-$(call include,$(bld_root)/meta/vc12proj.make)
-$(call include,$(bld_root)/meta/automake.make)
-
-$(call include,$(bld_root)/cxx/standard.make) # cxx_standard
-ifdef cxx_standard
-$(gen): odb_options += --std $(cxx_standard)
-$(call include,$(odb_rules))
-endif
-
-$(call include,$(bld_root)/cxx/cxx-d.make)
-$(call include,$(bld_root)/cxx/cxx-o.make)
-$(call include,$(bld_root)/cxx/o-e.make)
-
-# Dependencies.
-#
-$(call import,$(src_root)/libcommon/makefile)
diff --git a/qt/sqlite/template/test.std b/qt/sqlite/template/test.std
deleted file mode 100644
index e69de29..0000000
--- a/qt/sqlite/template/test.std
+++ /dev/null
diff --git a/qt/sqlite/test.bat b/qt/sqlite/test.bat
deleted file mode 100644
index 80e0f03..0000000
--- a/qt/sqlite/test.bat
+++ /dev/null
@@ -1,68 +0,0 @@
-@echo off
-rem file : qt/sqlite/test.bat
-rem license : GNU GPL v2; see accompanying LICENSE file
-
-setlocal
-
-set "tests=__path__(dirs)"
-set "confs=__path__(configurations)"
-set "plats=__path__(platforms)"
-set "curdir=%CD%"
-set "topdir=%curdir%\..\.."
-set "failed="
-
-goto start
-
-rem
-rem %1 - test directory
-rem %2 - configuration
-rem %3 - platform
-rem
-:run_test
- cd %1
-
- if "_%3_" == "_Win32_" (
- set "dir=%2"
- ) else (
- set "dir=%3\%2"
- )
-
- if exist %dir%\driver.exe (
- echo %1\%3\%2
- call %topdir%\tester.bat sqlite %2 %3
- if errorlevel 1 (
- set "failed=%failed% %1\%3\%2"
- )
- )
-
- cd %curdir%
-goto :eof
-
-:start
-
-for %%t in (%tests%) do (
- for %%c in (%confs%) do (
- for %%p in (%plats%) do (
- call :run_test %%t %%c %%p
- )
- )
-)
-
-if not "_%failed%_" == "__" goto error
-
-echo.
-echo ALL TESTS PASSED
-echo.
-goto end
-
-:error
-if not "_%failed%_" == "__" (
- echo.
- for %%t in (%failed%) do echo FAILED: %%t
- echo.
-)
-endlocal
-exit /b 1
-
-:end
-endlocal