forked from qt-creator/qt-creator
16 lines
253 B
Prolog
16 lines
253 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
|
||
|
|
|
||
|
|
SOURCES += main.cpp
|