aboutsummaryrefslogtreecommitdiff
path: root/common/template
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-06-13 21:57:07 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-06-13 21:57:07 +0200
commit236cd9bb1dd022e64d690c9b0080d1a15c5f61c7 (patch)
tree2bcb891a85a64b2a4dfb7be457ea0bbbf519ccb9 /common/template
parent2b03a8fa879bd583c889b101f567927a959cdc0f (diff)
Handle --database option directly in automake and VC++ projects
Diffstat (limited to 'common/template')
-rw-r--r--common/template/Makefile.am2
-rw-r--r--common/template/makefile5
-rw-r--r--common/template/template-vc10.vcxproj2
-rw-r--r--common/template/template-vc11.vcxproj2
-rw-r--r--common/template/template-vc9.vcproj2
5 files changed, 7 insertions, 6 deletions
diff --git a/common/template/Makefile.am b/common/template/Makefile.am
index 3571bc2..50ad1bc 100644
--- a/common/template/Makefile.am
+++ b/common/template/Makefile.am
@@ -35,6 +35,6 @@ BUILT_SOURCES += __f-odb.hxx
CLEANFILES += __f-odb.hxx __f-odb.ixx __f-odb.cxx
__f-odb.hxx: __f.hxx
- $(ODB) $(AM_CPPFLAGS) $(ODBCPPFLAGS) $(CPPFLAGS) $(ODBFLAGS) __value__(odb_options) $<
+ $(ODB) $(AM_CPPFLAGS) $(ODBCPPFLAGS) $(CPPFLAGS) $(ODBFLAGS) --database @database@ __value__(odb_options) $<
))
diff --git a/common/template/makefile b/common/template/makefile
index 63768df..0d8cf60 100644
--- a/common/template/makefile
+++ b/common/template/makefile
@@ -34,11 +34,13 @@ gen := $(addprefix $(out_base)/,$(genf))
$(gen): $(odb)
$(gen): odb := $(odb)
-$(gen) $(dist): export odb_options += --database $(db_id) --generate-schema \
+$(gen) $(dist): export odb_options += --generate-schema \
--table-prefix template_ #@@ CHANGE THIS
$(gen): cpp_options := -I$(src_base)
$(gen): $(common.l.cpp-options)
+$(gen): odb_options += --database $(db_id)
+
$(call include-dep,$(cxx_od),$(cxx_obj),$(gen))
# Alias for default target.
@@ -49,7 +51,6 @@ $(out_base)/: $(driver)
#
name := $(subst /,-,$(subst $(src_root)/common/,,$(src_base)))
-$(dist): db_id := @database@
$(dist): sources := $(cxx_tun)
$(dist): headers := $(odb_hdr)
$(dist): data_dist := test.std
diff --git a/common/template/template-vc10.vcxproj b/common/template/template-vc10.vcxproj
index c1229ea..fb21140 100644
--- a/common/template/template-vc10.vcxproj
+++ b/common/template/template-vc10.vcxproj
@@ -161,7 +161,7 @@ m4_dnl
__custom_build_entry__(
__f.hxx,
odb __f.hxx,
-odb.exe --std c++11 __xml__(__shell_quotes__(m4_patsubst(__value__(odb_options), @database@, __value__(database)) -DHAVE_CONFIG_VC_H -DODB_MSC_VER=1600 -I$(SolutionDir)\..\libcommon)) __f.hxx,
+odb.exe --std c++11 --database __value__(database) __xml__(__shell_quotes__(__value__(odb_options) -DHAVE_CONFIG_VC_H -DODB_MSC_VER=1600 -I$(SolutionDir)\..\libcommon)) __f.hxx,
__f-odb.hxx;__f-odb.ixx;__f-odb.cxx)
)
</ItemGroup>)
diff --git a/common/template/template-vc11.vcxproj b/common/template/template-vc11.vcxproj
index 048f160..c1f1b0d 100644
--- a/common/template/template-vc11.vcxproj
+++ b/common/template/template-vc11.vcxproj
@@ -165,7 +165,7 @@ m4_dnl
__custom_build_entry__(
__f.hxx,
odb __f.hxx,
-odb.exe --std c++11 __xml__(__shell_quotes__(m4_patsubst(__value__(odb_options), @database@, __value__(database)) -DHAVE_CONFIG_VC_H -DODB_MSC_VER=1600 -I$(SolutionDir)\..\libcommon)) __f.hxx,
+odb.exe --std c++11 --database __value__(database) __xml__(__shell_quotes__(__value__(odb_options) -DHAVE_CONFIG_VC_H -DODB_MSC_VER=1600 -I$(SolutionDir)\..\libcommon)) __f.hxx,
__f-odb.hxx;__f-odb.ixx;__f-odb.cxx)
)
</ItemGroup>)
diff --git a/common/template/template-vc9.vcproj b/common/template/template-vc9.vcproj
index a09174c..976b870 100644
--- a/common/template/template-vc9.vcproj
+++ b/common/template/template-vc9.vcproj
@@ -352,7 +352,7 @@ __ifelse__(__value__(odb_options),,,
__file_entry_custom_build__(
__f.hxx,
odb __f.hxx,
-odb.exe __xml__(__shell_quotes__(m4_patsubst(__value__(odb_options), @database@, __value__(database)) -DHAVE_CONFIG_VC_H -DODB_MSC_VER=1500 -I$(SolutionDir)\..\libcommon)) __f.hxx,
+odb.exe --database __value__(database) __xml__(__shell_quotes__(__value__(odb_options) -DHAVE_CONFIG_VC_H -DODB_MSC_VER=1500 -I$(SolutionDir)\..\libcommon)) __f.hxx,
__f-odb.hxx;__f-odb.ixx;__f-odb.cxx)
__file_entry__(__f-odb.hxx)
__file_entry__(__f-odb.ixx)))