diff options
Diffstat (limited to 'mkspecs/linux-g++-64/qmake.conf')
-rw-r--r-- | mkspecs/linux-g++-64/qmake.conf | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mkspecs/linux-g++-64/qmake.conf b/mkspecs/linux-g++-64/qmake.conf new file mode 100644 index 0000000..4f8794f --- /dev/null +++ b/mkspecs/linux-g++-64/qmake.conf @@ -0,0 +1,23 @@ +# +# qmake configuration for linux-g++ +# +# Written for GNU/Linux platforms that have both lib and lib64 directories, +# like the AMD Opteron. +# + +MAKEFILE_GENERATOR = UNIX +TEMPLATE = app +CONFIG += qt warn_on release incremental link_prl +QT += core gui +QMAKE_INCREMENTAL_STYLE = sublib + +QMAKE_CFLAGS = -m64 +QMAKE_LFLAGS = -m64 + +include(../common/g++.conf) +include(../common/linux.conf) + +QMAKE_LIBDIR_X11 = /usr/X11R6/lib64 +QMAKE_LIBDIR_OPENGL = /usr/X11R6/lib64 + +load(qt_config) |