~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to examples/tools/plugandpaintplugins/extrafilters/extrafilters.pro

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TEMPLATE      = lib
 
2
CONFIG       += plugin
 
3
INCLUDEPATH  += ../..
 
4
HEADERS       = extrafiltersplugin.h
 
5
SOURCES       = extrafiltersplugin.cpp
 
6
TARGET        = pnp_extrafilters
 
7
DESTDIR       = ../../plugandpaint/plugins
 
8
 
 
9
contains(TEMPLATE,lib) {
 
10
   CONFIG(debug, debug|release) {
 
11
      unix:TARGET = $$member(TARGET, 0)_debug
 
12
      else:TARGET = $$member(TARGET, 0)d
 
13
   }
 
14
}
 
15
 
 
16
# install
 
17
target.path = $$[QT_INSTALL_EXAMPLES]/tools/plugandpaint/plugins
 
18
sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS extrafilters.pro
 
19
sources.path = $$[QT_INSTALL_EXAMPLES]/tools/plugandpaintplugins/extrafilters
 
20
INSTALLS += target sources