forked from qt-creator/qt-creator
Having each source/header/form file on its own line
makes further moving around (e.g. sorting) much easier.
Also bring indentation for source/header sections to
the same level.
Amends commit cf40d98dc9
Change-Id: I95ad9c9298ae01e548a595b29d7f7651220adadd
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
18 lines
294 B
Prolog
18 lines
294 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%
|