mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-09 06:42:19 -04:00
added for plugins own dir
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1850 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
97d8640f3a
commit
87344de7d4
809 changed files with 790 additions and 722 deletions
37
plugins/puzzle_plugin/puzzle_plugin.pro
Normal file
37
plugins/puzzle_plugin/puzzle_plugin.pro
Normal file
|
@ -0,0 +1,37 @@
|
|||
#=== this part is common (similar) for all plugin projects =====================
|
||||
TEMPLATE = lib
|
||||
CONFIG += plugin debug
|
||||
|
||||
# this is directory, where PluginInterface.h is located
|
||||
INCLUDEPATH += ../
|
||||
|
||||
# and, the result (*.so or *.dll) should appear in this directory
|
||||
DESTDIR = ../bin
|
||||
OBJECTS_DIR = temp/obj
|
||||
RCC_DIR = temp/qrc
|
||||
UI_DIR = temp/ui
|
||||
MOC_DIR = temp/moc
|
||||
|
||||
|
||||
# the name of the result file;
|
||||
TARGET = $$qtLibraryTarget(puzzle_plugin)
|
||||
|
||||
HEADERS += ../PluginInterface.h \
|
||||
src/PuzzlePlugin.h
|
||||
SOURCES += src/PuzzlePlugin.cpp
|
||||
|
||||
#===============================================================================
|
||||
|
||||
|
||||
|
||||
#=== and here are definitions, specific for this program =======================
|
||||
HEADERS += src/mainwindow.h \
|
||||
src/pieceslist.h \
|
||||
src/puzzlewidget.h
|
||||
|
||||
RESOURCES = puzzle.qrc
|
||||
|
||||
SOURCES += src/mainwindow.cpp \
|
||||
src/pieceslist.cpp \
|
||||
src/puzzlewidget.cpp
|
||||
#===============================================================================
|
Loading…
Add table
Add a link
Reference in a new issue