Files
qt-creator/share/qtcreator/templates/qt4project/customwidgetwizard/tpl_plugin.pro
Friedemann Kleint 02de790714 Moved the custom widget wizard templates into Qt Creators template dir.
Cannot put a source file template into a resource in a source directory
as Visual Studio will grab and build it.
2009-06-30 17:11:35 +02:00

14 lines
324 B
Prolog

CONFIG += designer plugin debug_and_release
TARGET = $$qtLibraryTarget(@PLUGIN_NAME@)
TEMPLATE = lib
HEADERS =@PLUGIN_HEADERS@
SOURCES =@PLUGIN_SOURCES@
RESOURCES = @PLUGIN_RESOURCES@
LIBS += -L. @WIDGET_LIBS@
target.path = $$[QT_INSTALL_PLUGINS]/designer
INSTALLS += target
@INCLUSIONS@