~ubuntu-branches/ubuntu/oneiric/qwt/oneiric-proposed

« back to all changes in this revision

Viewing changes to qwt-5.0.1/examples/examples.pro

  • Committer: Bazaar Package Importer
  • Author(s): Fathi Boudra
  • Date: 2007-10-05 15:20:41 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071005152041-qmybqh4fj9jejyo2
Tags: 5.0.2-2
* Handle nostrip build option. (Closes: #437877)
* Build libqwt5-doc package in binary-indep target. (Closes: #443110)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- mode: sh -*- ################################################
2
 
# Qwt Widget Library
3
 
# Copyright (C) 1997   Josef Wilgen
4
 
# Copyright (C) 2002   Uwe Rathmann
5
 
#
6
 
# This library is free software; you can redistribute it and/or
7
 
# modify it under the terms of the Qwt License, Version 1.0
8
 
###################################################################
9
 
 
10
 
include( ../qwtconfig.pri )
11
 
 
12
 
TEMPLATE = subdirs
13
 
 
14
 
contains(CONFIG, QwtPlot) {
15
 
    
16
 
    SUBDIRS += \
17
 
        cpuplot \
18
 
        curvdemo1   \
19
 
        curvdemo2 \
20
 
        simple_plot \
21
 
        realtime_plot \
22
 
        spectrogram \
23
 
        histogram 
24
 
 
25
 
    contains(CONFIG, QwtWidgets) {
26
 
 
27
 
        SUBDIRS += \
28
 
            bode \
29
 
            data_plot \
30
 
            event_filter
31
 
    }
32
 
    
33
 
    contains(CONFIG, QwtSVGItem) {
34
 
 
35
 
        SUBDIRS += \
36
 
            svgmap
37
 
    }
38
 
}
39
 
 
40
 
contains(CONFIG, QwtWidgets) {
41
 
 
42
 
    SUBDIRS += \
43
 
        sysinfo \
44
 
        radio \
45
 
        dials \
46
 
        sliders
47
 
}
48
 
 
49