OSDN Git Service

Get rid of an annoying (useless?) call to qDebug.
[qt-creator-jp/qt-creator-jp.git] / doc / pluginhowto / examples / menu / addingmenu / addingmenu.pro
1 TEMPLATE = lib
2 TARGET = DoNothing
3
4 isEmpty(QTC_SOURCE):IDE_SOURCE_TREE=$$PWD/../../../../../
5 else:IDE_SOURCE_TREE=$$(QTC_SOURCE)
6
7 isEmpty(QTC_BUILD):IDE_BUILD_TREE=$$OUT_PWD/../../../../../
8 else:IDE_BUILD_TREE=$$(QTC_BUILD)
9
10 PROVIDER = FooCompanyInc
11
12 include($$IDE_SOURCE_TREE/src/qtcreatorplugin.pri)
13 include($$IDE_SOURCE_TREE/src/plugins/coreplugin/coreplugin.pri)
14
15 LIBS += -L$$IDE_PLUGIN_PATH/Nokia
16
17 HEADERS = donothingplugin.h
18 SOURCES = donothingplugin.cpp
19 OTHER_FILES = DoNothing.pluginspec
20
21