diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-01-29 14:45:07 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-01-29 14:45:07 +0000 |
commit | d7bbb08f0f57cb61d4421b1d3b90d8d408c687af (patch) | |
tree | e155da563e71f10a2177f160bbb019035e0cfbb2 /cppuhelper | |
parent | 94a3ea6b9c3fe649ef109a64ac2c75917aef4200 (diff) |
INTEGRATION: CWS cppuhelpshrink (1.1.2); FILE ADDED
2007/01/22 12:03:55 mmeeks 1.1.2.1: Issue number: i#72766#
Submitted by: mmeeks
Unit tests for Stefan.
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/qa/ifcontainer/export.map | 7 | ||||
-rw-r--r-- | cppuhelper/qa/ifcontainer/makefile.mk | 67 |
2 files changed, 74 insertions, 0 deletions
diff --git a/cppuhelper/qa/ifcontainer/export.map b/cppuhelper/qa/ifcontainer/export.map new file mode 100644 index 000000000000..4ca70fa85463 --- /dev/null +++ b/cppuhelper/qa/ifcontainer/export.map @@ -0,0 +1,7 @@ +UDK_3.0 { + global: + registerAllTestFunction; + + local: + *; +}; diff --git a/cppuhelper/qa/ifcontainer/makefile.mk b/cppuhelper/qa/ifcontainer/makefile.mk new file mode 100644 index 000000000000..0a7a94d4caa7 --- /dev/null +++ b/cppuhelper/qa/ifcontainer/makefile.mk @@ -0,0 +1,67 @@ +#************************************************************************* +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: makefile.mk,v $ +# +# $Revision: 1.2 $ +# +# last change: $Author: rt $ $Date: 2007-01-29 15:45:07 $ +# +# The Contents of this file are made available subject to +# the terms of GNU Lesser General Public License Version 2.1. +# +# +# GNU Lesser General Public License Version 2.1 +# ============================================= +# Copyright 2005 by Sun Microsystems, Inc. +# 901 San Antonio Road, Palo Alto, CA 94303, USA +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License version 2.1, as published by the Free Software Foundation. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# +#************************************************************************* + +PRJ=..$/.. +PRJNAME=cppuhelper +TARGET=cppu_ifcontainer + +ENABLE_EXCEPTIONS=TRUE + +# --- Settings ----------------------------------------------------- + +.INCLUDE : settings.mk + + +# BEGIN ---------------------------------------------------------------- +# auto generated Target:joblist by codegen.pl +SHL1OBJS= \ + $(SLO)$/cppu_ifcontainer.obj +SHL1TARGET= cppu_ifcontainer +SHL1STDLIBS=\ + $(CPPUHELPERLIB) \ + $(SALLIB) \ + $(CPPULIB) \ + $(CPPUNITLIB) +SHL1IMPLIB= i$(SHL1TARGET) +DEF1NAME =$(SHL1TARGET) +SHL1VERSIONMAP= export.map +# auto generated Target:joblist +# END ------------------------------------------------------------------ + +# --- Targets ------------------------------------------------------ + +.INCLUDE : target.mk +.INCLUDE : _cppunit.mk + |