mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-19 11:54:22 -04:00
Added pegmarkdown to the main project file.
Added revision number to the FeedReader plugin. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5998 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
d8e327afcc
commit
a3901d2b6b
2 changed files with 21 additions and 2 deletions
|
@ -2,6 +2,7 @@ TEMPLATE = subdirs
|
||||||
|
|
||||||
SUBDIRS += \
|
SUBDIRS += \
|
||||||
openpgpsdk/src/openpgpsdk.pro \
|
openpgpsdk/src/openpgpsdk.pro \
|
||||||
|
supportlibs/pegmarkdown/pegmarkdown.pro \
|
||||||
libbitdht/src/libbitdht.pro \
|
libbitdht/src/libbitdht.pro \
|
||||||
libretroshare/src/libretroshare.pro \
|
libretroshare/src/libretroshare.pro \
|
||||||
retroshare-gui/src/retroshare-gui.pro \
|
retroshare-gui/src/retroshare-gui.pro \
|
||||||
|
|
|
@ -44,13 +44,31 @@ extern "C" {
|
||||||
|
|
||||||
return (void*)p;
|
return (void*)p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// This symbol contains the svn revision number grabbed from the executable.
|
||||||
|
// It will be tested by RS to load the plugin automatically, since it is safe to load plugins
|
||||||
|
// with same revision numbers, assuming that the revision numbers are up-to-date.
|
||||||
|
//
|
||||||
|
#ifdef WIN32
|
||||||
|
__declspec(dllexport)
|
||||||
|
#endif
|
||||||
|
uint32_t RETROSHARE_PLUGIN_revision = SVN_REVISION_NUMBER ;
|
||||||
|
|
||||||
|
// This symbol contains the svn revision number grabbed from the executable.
|
||||||
|
// It will be tested by RS to load the plugin automatically, since it is safe to load plugins
|
||||||
|
// with same revision numbers, assuming that the revision numbers are up-to-date.
|
||||||
|
//
|
||||||
|
#ifdef WIN32
|
||||||
|
__declspec(dllexport)
|
||||||
|
#endif
|
||||||
|
uint32_t RETROSHARE_PLUGIN_api = RS_PLUGIN_API_VERSION ;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FeedReaderPlugin::getPluginVersion(int& major,int& minor,int& svn_rev) const
|
void FeedReaderPlugin::getPluginVersion(int& major,int& minor,int& svn_rev) const
|
||||||
{
|
{
|
||||||
major = 5;
|
major = 5;
|
||||||
minor = 1;
|
minor = 4;
|
||||||
svn_rev = 4350;
|
svn_rev = SVN_REVISION_NUMBER;
|
||||||
}
|
}
|
||||||
|
|
||||||
FeedReaderPlugin::FeedReaderPlugin()
|
FeedReaderPlugin::FeedReaderPlugin()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue