forked from qt-creator/qt-creator
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>
11 lines
163 B
Prolog
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
|