File: tiled.pri

package info (click to toggle)
tiled-qt 0.10.1-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,356 kB
  • ctags: 6,894
  • sloc: cpp: 50,440; java: 3,301; python: 1,379; ansic: 556; xml: 356; ruby: 41; makefile: 22; sh: 7
file content (23 lines) | stat: -rw-r--r-- 636 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# See the README file for instructions about setting the install prefix.
isEmpty(PREFIX):PREFIX = /usr/local
isEmpty(LIBDIR):LIBDIR = $${PREFIX}/lib
isEmpty(RPATH):RPATH = yes
isEmpty(INSTALL_HEADERS):INSTALL_HEADERS = no

macx {
    # Do a universal build when possible
    contains(QT_CONFIG, ppc):CONFIG += x86 ppc
}

win32 {
    # This allows Tiled to use up to 3 GB on 32-bit systems and 4 GB on
    # 64-bit systems, rather than being limited to just 2 GB.
    QMAKE_LFLAGS += /LARGEADDRESSAWARE
}

CONFIG += depend_includepath


!isEmpty(USE_FHS_PLUGIN_PATH) {
    DEFINES += TILED_PLUGIN_DIR=\\\"$${LIBDIR}/tiled/plugins/\\\"
}