forked from qt-creator/qt-creator
26 lines
602 B
Prolog
26 lines
602 B
Prolog
|
|
# Uncomment the lines below and set the path
|
||
|
|
|
||
|
|
QTC_SOURCE = C:/Work/QtCreator
|
||
|
|
QTC_BUILD = C:/Work/QtCreator/build
|
||
|
|
|
||
|
|
TEMPLATE = lib
|
||
|
|
TARGET = DirModelPlugin
|
||
|
|
IDE_SOURCE_TREE = $$QTC_SOURCE
|
||
|
|
IDE_BUILD_TREE = $$QTC_BUILD
|
||
|
|
|
||
|
|
PROVIDER = FooCompanyInc
|
||
|
|
|
||
|
|
|
||
|
|
include($$QTC_SOURCE/src/qtcreatorplugin.pri)
|
||
|
|
include($$QTC_SOURCE/src/plugins/coreplugin/coreplugin.pri)
|
||
|
|
|
||
|
|
LIBS += -L$$IDE_PLUGIN_PATH/Nokia
|
||
|
|
|
||
|
|
HEADERS = dirmodelpluginplugin.h \
|
||
|
|
dirnavigationfactory.h \
|
||
|
|
filesystemmodel.h
|
||
|
|
SOURCES = dirmodelpluginplugin.cpp \
|
||
|
|
dirnavigationfactory.cpp \
|
||
|
|
filesystemmodel.cpp
|
||
|
|
OTHER_FILES = DirModelPlugin.pluginspec
|