mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
87344de7d4
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1850 b45a01b8-16f6-495d-af2f-9b41ad6348cc
47 lines
1.3 KiB
Prolog
47 lines
1.3 KiB
Prolog
#=== this part is common (similar) for all plugin projects =====================
|
|
TEMPLATE = lib
|
|
CONFIG += plugin release
|
|
|
|
# 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(qorganizer_plugin)
|
|
|
|
HEADERS += ../PluginInterface.h \
|
|
qorganizerPlugin.h
|
|
SOURCES += qorganizerPlugin.cpp
|
|
|
|
#===============================================================================
|
|
|
|
TARGET =
|
|
DEPENDPATH += . lang
|
|
INCLUDEPATH += .
|
|
|
|
# Input
|
|
HEADERS += qorganizer.h settings.h delegates.h
|
|
SOURCES += main.cpp qorganizer.cpp settings.cpp delegates.cpp
|
|
RESOURCES += application.qrc
|
|
QT += network sql
|
|
TRANSLATIONS += lang/Hungarian.ts \
|
|
lang/Romanian.ts \
|
|
lang/Portuguese.ts \
|
|
lang/Slovenian.ts \
|
|
lang/Russian.ts \
|
|
lang/Spanish.ts \
|
|
lang/Albanian.ts \
|
|
lang/Macedonian.ts \
|
|
lang/Estonian.ts \
|
|
lang/Dutch.ts \
|
|
lang/German.ts \
|
|
lang/French.ts \
|
|
lang/Polish.ts
|