38be0d1383
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
27 lines
573 B
Plaintext
27 lines
573 B
Plaintext
#
|
|
# qmake configuration for linux-g++
|
|
#
|
|
# Written for GNU/Linux platforms that have both lib and lib64 directories,
|
|
# like the AMD Opteron.
|
|
#
|
|
|
|
MAKEFILE_GENERATOR = UNIX
|
|
TARGET_PLATFORM = unix
|
|
TEMPLATE = app
|
|
CONFIG += qt warn_on release incremental link_prl gdb_dwarf_index
|
|
QT += core gui
|
|
QMAKE_INCREMENTAL_STYLE = sublib
|
|
|
|
QMAKE_CFLAGS = -m64
|
|
QMAKE_LFLAGS = -m64
|
|
|
|
include(../common/linux.conf)
|
|
include(../common/gcc-base-unix.conf)
|
|
include(../common/g++-unix.conf)
|
|
|
|
|
|
QMAKE_LIBDIR_X11 = /usr/X11R6/lib64
|
|
QMAKE_LIBDIR_OPENGL = /usr/X11R6/lib64
|
|
|
|
load(qt_config)
|