~ubuntu-branches/ubuntu/precise/ipe/precise

« back to all changes in this revision

Viewing changes to src/config.pro

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2005-02-24 22:09:16 UTC
  • mfrom: (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050224220916-9vxiiqjz066r5489
Tags: 6.0pre23-2
debian/control: Ipe should depend on exact version of libipe.
Closes: #296771.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
# Freetype location
9
9
#
10
10
# Path to "ft2build.h" (if not on standard include path)
11
 
INCLUDEPATH += /usr/include/freetype2
 
11
FREETYPE_INCLUDE  = /usr/include/freetype2
12
12
# Path to "libfreetype.so" (if not in a standard library directory)
13
 
#LIBS       += /usr/lib
 
13
#FREETYPE_LIBS    = /usr/lib
14
14
# --------------------------------------------------------------------
15
15
#
16
16
# Zlib location
17
17
#
18
18
# Path to "zlib.h" (if not on standard include path)
19
 
#INCLUDEPATH     += /usr/include
 
19
#ZLIB_INCLUDE     = /usr/include
20
20
# Path to "libz.so" (if not in a standard library directory)
21
 
#unix:LIBS       += /usr/lib
 
21
#ZLIB_LIBS        = /usr/lib
22
22
# --------------------------------------------------------------------
23
23
#
24
24
# Using threaded Qt library?
25
25
#
26
26
# Uncomment the next line to use the non-threaded Qt-library
27
 
CONFIG      += thread
 
27
CONFIG     += thread
 
28
# --------------------------------------------------------------------
 
29
#
 
30
# Compile against KDE?
 
31
#
 
32
# Uncomment next line if you wish to compile Ipe as a KDE application.
 
33
# (and no, that doesn't change the name to "kipe")
 
34
#CONFIG       += kde
 
35
KDE_INCLUDE   = /usr/include/kde
28
36
# --------------------------------------------------------------------
29
37
#
30
38
# Installing Ipe:
31
39
#
32
 
IPEVERS = 6.0pre16
 
40
IPEVERS = 6.0pre23
33
41
#
34
42
# IPEPREFIX is the global prefix for the Ipe directory structure, which
35
43
# you can override individually for any of the specific directories.
45
53
IPEPREFIX  = /usr
46
54
#IPEPREFIX  = /opt/ipe-6.0
47
55
#
 
56
#
48
57
# Where Ipe executables will be installed ('ipe', 'ipe5toxml' etc)
49
58
IPEBINDIR  = $${IPEPREFIX}/bin
50
59
#
61
70
# (Paths are separated by ":" on Windows and ";" on Unix)
62
71
IPELETPATH = $${IPELETDIR}
63
72
#
64
 
# IPEDATADIR will contain two (or three) subdirectories:
65
 
#  * IPEDATADIR/doc for documentation (mostly html files)
66
 
#  * IPEDATADIR/languages for Ipe localization (but none has been made yet)
67
 
#  * IPEDATADIR/fonts for the standard PDF fonts (on systems where these
68
 
#                                                 are not already elsewhere)
69
 
#
70
 
IPEDATADIR = $${IPEPREFIX}/share/ipe/$${IPEVERS}
71
 
#
72
 
# The full path to the Ipe fontmap:
73
 
IPEFONTMAP = $${IPEDATADIR}/fontmap.xml
 
73
# IPEDOCDIR will contain the Ipe documentation (mostly html files)
 
74
#
 
75
IPEDOCDIR  = $${IPEPREFIX}/share/doc/ipe/doc
 
76
#
 
77
# IPELANGDIR will contain Ipe UI translations (none exist yet)
 
78
#
 
79
IPELANGDIR = $${IPEPREFIX}/share/ipe/$${IPEVERS}/languages
 
80
#
 
81
# IPEMANDIR will contain the Ipe manual pages
 
82
#
 
83
IPEMANDIR  = $${IPEPREFIX}/share/man/man1
 
84
#
 
85
# The full path to the Ipe fontmap
 
86
#
 
87
IPEFONTMAP = $${IPEPREFIX}/share/ipe/$${IPEVERS}/fontmap.xml
74
88
#
75
89
# The HTML browser started to read the on-line Ipe documentation.
76
 
#IPEBROWSER = netscape
77
 
#IPEBROWSER = konqueror
 
90
# (not used if compiled against KDE)
78
91
IPEBROWSER = sensible-browser
79
92
# --------------------------------------------------------------------
80
93
# Standard definitions --- don't change
81
94
CONFIG      += warn_on release
82
 
#linux-g++:QMAKE_CXXFLAGS_WARN_ON += -Werror
 
95
CONFIG      -= qt
 
96
linux-g++:QMAKE_CXXFLAGS_WARN_ON += -Werror
83
97
# --------------------------------------------------------------------
 
98
 
 
99
# If this is not used, a build from /usr/.... will generate
 
100
# Makefiles with relative paths for install.  This totally
 
101
# fucks up using INSTALL_ROOT for a staged install.
 
102
# See http://bugs.debian.org/180240
 
103
QMAKE_PROJECT_DEPTH=1