forked from qt-creator/qt-creator
Change-Id: Id1d0b686eda09f6fb513374c9b5337ffdd83b82a Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
14 lines
228 B
Prolog
14 lines
228 B
Prolog
@if "%RequireGUI%" == "true"
|
|
QT += core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
@else
|
|
QT -= gui
|
|
CONFIG += console
|
|
CONFIG -= app_bundle
|
|
@endif
|
|
|
|
TEMPLATE = app
|
|
TARGET = %ProjectName%
|
|
|
|
SOURCES += main.%CppSourceSuffix%
|