summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/customwizard/customwizard.pri
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-09-01 13:27:24 +0200
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2010-09-01 13:27:24 +0200
commitc6132a05f311fedf7e14f5dc990aa60ba6a683f3 (patch)
tree15e1617185707e85a6287cd7b4706c1ca15cb83e /src/plugins/projectexplorer/customwizard/customwizard.pri
parentb719bbda42261db37d826d461ab25c2f96e194f9 (diff)
downloadqt-creator-c6132a05f311fedf7e14f5dc990aa60ba6a683f3.tar.gz
Customwizards: Add a way of wrapping a Generator script.
Add attribute to XML syntax specifying a script to generate files. The script must provide a --dry-run mode in which it prints the files it intends to create and their attributes to stdout. Rework the CustomWizardContext structure to contain target path and parameter mappings, simplify some code there.
Diffstat (limited to 'src/plugins/projectexplorer/customwizard/customwizard.pri')
-rw-r--r--src/plugins/projectexplorer/customwizard/customwizard.pri6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/customwizard/customwizard.pri b/src/plugins/projectexplorer/customwizard/customwizard.pri
index ac8bf2ea26..6b0066cbc6 100644
--- a/src/plugins/projectexplorer/customwizard/customwizard.pri
+++ b/src/plugins/projectexplorer/customwizard/customwizard.pri
@@ -2,8 +2,10 @@ INCLUDEPATH *= $$PWD
HEADERS += $$PWD/customwizard.h \
$$PWD/customwizardparameters.h \
$$PWD/customwizardpage.h \
- customwizard/customwizardpreprocessor.h
+ customwizard/customwizardpreprocessor.h \
+ customwizard/customwizardscriptgenerator.h
SOURCES += $$PWD/customwizard.cpp \
$$PWD/customwizardparameters.cpp \
$$PWD/customwizardpage.cpp \
- customwizard/customwizardpreprocessor.cpp
+ customwizard/customwizardpreprocessor.cpp \
+ customwizard/customwizardscriptgenerator.cpp