Files
qt-creator/share/qtcreator/templates/wizards/helloworld/project.pro
Friedemann Kleint ba6b52ce14 Customwizard: Add a simple preprocessor.
Allowing for nesting sections depending on Javascript expression using
the (expanded) wizard field variables as in:

-- test.pro.template:
QT = core
@if "%NETWORK_CHECKBOX%" == "true"
QT += network
@endif
Rubber-stamped-by: Alessandro Portale <alessandro.portale@nokia.com>
2010-07-09 08:31:46 +02:00

11 lines
163 B
Prolog

QT = core
%NETWORK%QT += network
@if "%SCRIPT%" == "true"
QT += script
@endif
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += main.cpp