forked from qt-creator/qt-creator
Change-Id: Ib3732c018283ebb7a609cd68cdc6b7880bd55f9f Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
17 lines
283 B
Prolog
17 lines
283 B
Prolog
TEMPLATE = app
|
|
@if "%TYPE%" == "core"
|
|
QT = core
|
|
@else
|
|
QT = core gui
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
@endif
|
|
@if "%CONSOLE%" == "true"
|
|
CONFIG += console
|
|
@endif
|
|
@if "%APP_BUNDLE%" == "false"
|
|
CONFIG -= app_bundle
|
|
@endif
|
|
CONFIG += c++11
|
|
|
|
SOURCES += main.%CppSourceSuffix%
|