office-gobmx/connectivity/CppunitTest_connectivity_ado.mk
David Ostrovsky 28b6325901 VS2013: Make ADO backwards compatible for SDK > 8.0
Change-Id: I2e607156831321cc0ea5c3030befb635c5acaed1
Reviewed-on: https://gerrit.libreoffice.org/10156
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
2014-07-11 11:55:36 +00:00

78 lines
2 KiB
Makefile

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# 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/.
#
$(eval $(call gb_CppunitTest_CppunitTest,connectivity_ado))
$(eval $(call gb_CppunitTest_set_include,connectivity_ado,\
-I$(SRCDIR)/connectivity/source/inc \
-I$(SRCDIR)/connectivity/source/drivers/ado \
$$(INCLUDE) \
))
$(eval $(call gb_CppunitTest_use_external,connectivity_ado,boost_headers))
$(eval $(call gb_CppunitTest_use_api,connectivity_ado,\
udkapi \
offapi \
))
$(eval $(call gb_CppunitTest_use_ure,connectivity_ado))
$(eval $(call gb_CppunitTest_use_vcl,connectivity_ado))
$(eval $(call gb_CppunitTest_use_sdk_api,connectivity_ado))
ifeq ($(COM),GCC)
$(eval $(call gb_CppunitTest_add_cxxflags,connectivity_ado,\
-fpermissive \
))
endif
ifneq (,$(filter $(WINDOWS_SDK_VERSION),80 81))
$(eval $(call gb_CppunitTest_add_defs,connectivity_ado,\
-DNTDDI_VERSION=0x0601 \
))
endif
$(eval $(call gb_CppunitTest_add_exception_objects,connectivity_ado, \
connectivity/qa/connectivity/ado/DriverTest \
))
$(eval $(call gb_CppunitTest_use_libraries,connectivity_ado, \
comphelper \
cppu \
cppuhelper \
dbtools \
i18nlangtag \
ado \
sal \
salhelper \
sb \
test \
unotest \
ucbhelper \
utl \
$(gb_UWINAPI) \
))
$(eval $(call gb_CppunitTest_use_components,connectivity_ado,\
configmgr/source/configmgr \
i18npool/util/i18npool \
connectivity/source/drivers/ado/ado \
ucb/source/core/ucb1 \
ucb/source/ucp/file/ucpfile1 \
))
$(eval $(call gb_CppunitTest_use_configuration,connectivity_ado))
$(call gb_CppunitTest_get_target,connectivity_ado) : $(WORKDIR)/CppunitTest/TS001018407.mdb
$(WORKDIR)/CppunitTest/TS001018407.mdb : $(SRCDIR)/connectivity/qa/connectivity/ado/TS001018407.mdb
mkdir -p $(dir $@)
$(call gb_Deliver_deliver,$<,$@)
# vim: set noet sw=4 ts=4: