Files
qt-creator/share/qtcreator/templates/wizards/codesnippet/project.pro
Friedemann Kleint f02c0f64e2 Add a wizard that lets the user enter a code-snippet.
This is useful when fixing tasks that contain a code snippet.

Change-Id: Idaf523839254eed97a363501f0aba4317d216d1c
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
2012-10-04 14:33:37 +02:00

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