20 lines
366 B
Plaintext
20 lines
366 B
Plaintext
|
#
|
||
|
# qmake configuration for linux-clang
|
||
|
#
|
||
|
|
||
|
MAKEFILE_GENERATOR = UNIX
|
||
|
TARGET_PLATFORM = unix
|
||
|
TEMPLATE = app
|
||
|
CONFIG += qt warn_on release incremental link_prl
|
||
|
QT += core gui
|
||
|
|
||
|
QMAKE_INCREMENTAL_STYLE = sublib
|
||
|
|
||
|
include(../../common/linux.conf)
|
||
|
include(../../common/gcc-base-unix.conf)
|
||
|
include(../../common/clang.conf)
|
||
|
|
||
|
QMAKE_LFLAGS += -ccc-gcc-name g++
|
||
|
|
||
|
load(qt_config)
|