2011-08-10 02:12:48 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-04-15 17:27:06 +00:00
|
|
|
#
|
2013-04-19 21:10:42 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-04-15 17:27:06 +00:00
|
|
|
#
|
2013-04-19 21:10:42 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-04-15 17:27:06 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Module_Module,dbaccess))
|
|
|
|
|
2012-02-06 14:29:18 +02:00
|
|
|
ifneq (,$(filter DBCONNECTIVITY,$(BUILD_TYPE)))
|
|
|
|
|
2011-10-26 12:18:11 +03:00
|
|
|
$(eval $(call gb_Module_add_targets,dbaccess,\
|
2011-04-18 14:46:56 +02:00
|
|
|
AllLangResTarget_dba \
|
|
|
|
AllLangResTarget_dbmm \
|
2011-07-23 10:13:13 +02:00
|
|
|
AllLangResTarget_dbu \
|
2011-04-19 16:17:24 +01:00
|
|
|
AllLangResTarget_sdbt \
|
2012-12-12 01:07:09 +02:00
|
|
|
$(if $(filter WNT,$(OS)),Executable_odbcconfig) \
|
2011-04-18 14:46:56 +02:00
|
|
|
Library_dba \
|
|
|
|
Library_dbaxml \
|
|
|
|
Library_dbmm \
|
2011-07-23 10:13:13 +02:00
|
|
|
Library_dbu \
|
2011-04-19 16:01:24 +01:00
|
|
|
Library_sdbt \
|
2013-04-06 13:10:54 +02:00
|
|
|
UIConfig_dbaccess \
|
2013-04-06 15:34:43 +02:00
|
|
|
UIConfig_dbapp \
|
|
|
|
UIConfig_dbbrowser \
|
|
|
|
UIConfig_dbquery \
|
|
|
|
UIConfig_dbrelation \
|
|
|
|
UIConfig_dbtable \
|
|
|
|
UIConfig_dbtdata \
|
2011-10-26 12:18:11 +03:00
|
|
|
))
|
2011-04-15 17:27:06 +00:00
|
|
|
|
2013-09-07 17:32:20 +01:00
|
|
|
ifeq ($(ENABLE_FIREBIRD_SDBC),TRUE)
|
2012-02-12 19:34:23 +01:00
|
|
|
$(eval $(call gb_Module_add_check_targets,dbaccess,\
|
2013-09-07 17:32:20 +01:00
|
|
|
CppunitTest_dbaccess_firebird_test \
|
2012-02-12 19:34:23 +01:00
|
|
|
))
|
2013-09-07 17:32:20 +01:00
|
|
|
endif
|
2012-02-12 19:34:23 +01:00
|
|
|
|
2013-08-03 10:49:41 +02:00
|
|
|
$(eval $(call gb_Module_add_check_targets,dbaccess,\
|
|
|
|
CppunitTest_dbaccess_dialog_save \
|
|
|
|
))
|
|
|
|
|
2013-09-30 17:55:57 +01:00
|
|
|
ifeq ($(ENABLE_JAVA),TRUE)
|
|
|
|
$(eval $(call gb_Module_add_check_targets,dbaccess,\
|
|
|
|
CppunitTest_dbaccess_hsqldb_test \
|
|
|
|
))
|
|
|
|
endif
|
2013-08-03 10:49:41 +02:00
|
|
|
|
2013-09-17 15:34:36 +01:00
|
|
|
# This runs a suite of peformance tests on embedded firebird and HSQLDB.
|
|
|
|
# Instructions on running the test can be found in qa/unit/embeddedb_performancetest
|
|
|
|
ifeq ($(ENABLE_FIREBIRD_SDBC),TRUE)
|
|
|
|
ifeq ($(ENABLE_JAVA),TRUE)
|
|
|
|
$(eval $(call gb_Module_add_check_targets,dbaccess,\
|
|
|
|
CppunitTest_dbaccess_embeddeddb_performancetest \
|
|
|
|
))
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2012-02-15 22:27:11 +01:00
|
|
|
# disable test because it still fails in some situations
|
|
|
|
# CppunitTest_dbaccess_macros_test \
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2011-04-15 17:27:06 +00:00
|
|
|
$(eval $(call gb_Module_add_subsequentcheck_targets,dbaccess,\
|
|
|
|
JunitTest_dbaccess_complex \
|
2011-03-28 00:46:06 +02:00
|
|
|
JunitTest_dbaccess_unoapi \
|
2011-04-15 17:27:06 +00:00
|
|
|
))
|
|
|
|
|
2012-02-06 14:29:18 +02:00
|
|
|
endif
|
|
|
|
|
2011-07-30 23:01:01 +03:00
|
|
|
# vim: set noet sw=4 ts=4:
|