forked from qt-creator/qt-creator
Clean the .pro files and use Qt 5 plugin metadata instead of old exports. Change-Id: I24c96d90f5dc45ecd20064159eb175e0e0475a34 Reviewed-by: hjk <hjk@qt.io>
16 lines
331 B
Prolog
16 lines
331 B
Prolog
CONFIG += plugin debug_and_release
|
|
TARGET = $$qtLibraryTarget(@PLUGIN_NAME@)
|
|
TEMPLATE = lib
|
|
|
|
HEADERS =@PLUGIN_HEADERS@
|
|
SOURCES =@PLUGIN_SOURCES@
|
|
RESOURCES = @PLUGIN_RESOURCES@
|
|
LIBS += -L. @WIDGET_LIBS@
|
|
|
|
QT += designer
|
|
|
|
target.path = $$[QT_INSTALL_PLUGINS]/designer
|
|
INSTALLS += target
|
|
|
|
@INCLUSIONS@
|