Files
qt-creator/share/qtcreator/templates/wizards/qtcreatorplugin/myplugin.pro
T

33 lines
808 B
Prolog
Raw Normal View History

2010-05-05 18:40:30 +02:00
TARGET = %PluginName%
TEMPLATE = lib
DEFINES += %PluginName:u%_LIBRARY
# %PluginName% files
2010-12-07 12:24:30 +01:00
SOURCES += %PluginName:l%plugin.cpp
2010-05-05 18:40:30 +02:00
2010-12-07 12:24:30 +01:00
HEADERS += %PluginName:l%plugin.h\
%PluginName:l%_global.h\
%PluginName:l%constants.h
2010-05-05 18:40:30 +02:00
OTHER_FILES = %PluginName%.pluginspec
# Qt Creator linking
## set the QTC_SOURCE environment variable to override the setting here
2010-05-05 18:40:30 +02:00
QTCREATOR_SOURCES = $$(QTC_SOURCE)
isEmpty(QTCREATOR_SOURCES):QTCREATOR_SOURCES=%QtCreatorSources%
## set the QTC_BUILD environment variable to override the setting here
2010-05-05 18:40:30 +02:00
IDE_BUILD_TREE = $$(QTC_BUILD)
isEmpty(IDE_BUILD_TREE):IDE_BUILD_TREE=%QtCreatorBuild%
2010-05-05 18:40:30 +02:00
PROVIDER = %VendorName%
include($$QTCREATOR_SOURCES/src/qtcreatorplugin.pri)
include($$QTCREATOR_SOURCES/src/plugins/coreplugin/coreplugin.pri)
LIBS += -L$$IDE_PLUGIN_PATH/Nokia