summaryrefslogtreecommitdiff
path: root/slideshow/test
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-12-13 15:09:11 +0000
committerKurt Zenker <kz@openoffice.org>2006-12-13 15:09:11 +0000
commit17ef37f464292a31c22c57163420954babf596b9 (patch)
tree9d613ee8217a32ca1cd9e2da1a0612201b13d4bb /slideshow/test
parent9c379a6b44151acb27c63a9521f09046f618a4d4 (diff)
INTEGRATION: CWS presfixes09 (1.1.2); FILE ADDED
2006/05/12 21:56:48 thb 1.1.2.2: #i49357# Added demo code and unit tests for slideshow classes 2006/04/03 16:22:51 thb 1.1.2.1: #i37778# Added unit test scaffolding to slideshow
Diffstat (limited to 'slideshow/test')
-rw-r--r--slideshow/test/makefile.mk104
1 files changed, 104 insertions, 0 deletions
diff --git a/slideshow/test/makefile.mk b/slideshow/test/makefile.mk
new file mode 100644
index 000000000000..8de923a416e2
--- /dev/null
+++ b/slideshow/test/makefile.mk
@@ -0,0 +1,104 @@
+#*************************************************************************
+#
+# OpenOffice.org - a multi-platform office productivity suite
+#
+# $RCSfile: makefile.mk,v $
+#
+# $Revision: 1.2 $
+#
+# last change: $Author: kz $ $Date: 2006-12-13 16:09:11 $
+#
+# 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=slideshow
+PRJINC=$(PRJ)$/source
+TARGET=tests
+TARGETTYPE=GUI
+
+ENABLE_EXCEPTIONS=TRUE
+
+# --- Settings -----------------------------------------------------
+
+.INCLUDE : settings.mk
+
+# --- Common ----------------------------------------------------------
+
+# BEGIN target1 -------------------------------------------------------
+SHL1OBJS= \
+ $(SLO)$/views.obj
+
+SHL1TARGET= tests
+SHL1STDLIBS= $(SALLIB) \
+ $(BASEGFXLIB) \
+ $(CPPUHELPERLIB) \
+ $(CPPULIB) \
+ $(CPPUNITLIB) \
+ $(UNOTOOLSLIB) \
+ $(VCLLIB)
+
+.IF "$(OS)"=="WNT"
+ SHL1STDLIBS+=$(LIBPRE) islideshowtest.lib
+.ELSE
+ SHL1STDLIBS+=-lslideshowtest$(OFFICEUPD)$(DLLPOSTFIX)
+.ENDIF
+
+SHL1IMPLIB= i$(SHL1TARGET)
+
+DEF1NAME =$(SHL1TARGET)
+SHL1VERSIONMAP = export.map
+# END target1 ----------------------------------------------------------
+
+# BEGIN target2 --------------------------------------------------------
+APP2OBJS= \
+ $(SLO)$/demoshow.obj
+
+APP2TARGET= demoshow
+APP2STDLIBS=$(TOOLSLIB) \
+ $(COMPHELPERLIB) \
+ $(CPPCANVASLIB) \
+ $(CPPULIB) \
+ $(CPPUHELPERLIB) \
+ $(UCBHELPERLIB) \
+ $(SALLIB) \
+ $(VCLLIB) \
+ $(BASEGFXLIB)
+
+.IF "$(GUI)"!="UNX"
+APP2DEF= $(MISC)$/$(TARGET).def
+.ENDIF
+# END target2 ----------------------------------------------------------------
+
+#------------------------------- All object files ----------------------------
+
+# do this here, so we get right dependencies
+SLOFILES=$(SHL1OBJS)
+
+# --- Targets ------------------------------------------------------
+
+.INCLUDE : target.mk
+.INCLUDE : _cppunit.mk