diff options
author | David Tardon <dtardon@redhat.com> | 2014-03-30 16:16:46 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2014-03-30 19:06:28 +0200 |
commit | 4af1bcf0bda75a0b9e8db8a2080e65d8f134b34a (patch) | |
tree | 5378ef237ef170624742a22ed265945c7d253463 /writerperfect/StaticLibrary_writerperfect_importtestbase.mk | |
parent | 7485d76164589652359f7da840b01c0f64bbe7c6 (diff) |
reduce the amount of copypasta
Change-Id: I19b75b29da91ba1057f7da786da18fb246d97598
Diffstat (limited to 'writerperfect/StaticLibrary_writerperfect_importtestbase.mk')
-rw-r--r-- | writerperfect/StaticLibrary_writerperfect_importtestbase.mk | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/writerperfect/StaticLibrary_writerperfect_importtestbase.mk b/writerperfect/StaticLibrary_writerperfect_importtestbase.mk new file mode 100644 index 000000000000..172ca40c5dec --- /dev/null +++ b/writerperfect/StaticLibrary_writerperfect_importtestbase.mk @@ -0,0 +1,35 @@ +# -*- 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_StaticLibrary_StaticLibrary,writerperfect_importtestbase)) + +$(eval $(call gb_StaticLibrary_set_include,writerperfect_importtestbase,\ + -I$(SRCDIR)/writerperfect/qa/unit \ + $$(INCLUDE) \ +)) + +$(eval $(call gb_StatiLibrary_use_externals,writerperfect_importtestbase,\ + boost_headers \ + cppunit \ +)) + +$(eval $(call gb_StaticLibrary_use_sdk_api,writerperfect_importtestbase)) + +$(eval $(call gb_StaticLibrary_use_libraries,writerperfect_importtestbase,\ + cppu \ + sal \ + test \ + unotest \ +)) + +$(eval $(call gb_StaticLibrary_add_exception_objects,writerperfect_importtestbase,\ + writerperfect/qa/unit/WpftImportTestBase \ +)) + +# vim: set noet sw=4 ts=4: |