mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
fixed includes/libs
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7245 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
1e0ea41b4a
commit
7d9449421b
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
#include <retroshare/rsids.h>
|
#include <retroshare/rsids.h>
|
||||||
|
|
||||||
#include "Network.h"
|
#include "nscore/Network.h"
|
||||||
#include "NetworkViewer.h"
|
#include "NetworkViewer.h"
|
||||||
|
|
||||||
NetworkViewer::NetworkViewer(QWidget *parent,Network&net)
|
NetworkViewer::NetworkViewer(QWidget *parent,Network&net)
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
// 5 - perturbate the network
|
// 5 - perturbate the network
|
||||||
// * change the load of each node, and the delay when forwarding requests.
|
// * change the load of each node, and the delay when forwarding requests.
|
||||||
//
|
//
|
||||||
#include "Network.h"
|
#include "nscore/Network.h"
|
||||||
|
|
||||||
class NetworkViewer: public QGLViewer
|
class NetworkViewer: public QGLViewer
|
||||||
{
|
{
|
||||||
|
@ -3,7 +3,7 @@ TEMPLATE = app
|
|||||||
CONFIG *= qt qglviewer
|
CONFIG *= qt qglviewer
|
||||||
QT *= xml opengl
|
QT *= xml opengl
|
||||||
|
|
||||||
INCLUDEPATH *= ../.. ..
|
INCLUDEPATH *= ../../.. ..
|
||||||
|
|
||||||
TARGET = NetworkSim
|
TARGET = NetworkSim
|
||||||
DESTDIR = bin
|
DESTDIR = bin
|
||||||
@ -16,4 +16,9 @@ HEADERS = NetworkViewer.h NetworkSimulatorGUI.h \
|
|||||||
|
|
||||||
FORMS = NetworkSimulatorGUI.ui TurtleRouterStatistics.ui
|
FORMS = NetworkSimulatorGUI.ui TurtleRouterStatistics.ui
|
||||||
|
|
||||||
LIBS *= ../../../lib/libretroshare.a ../../../../../libbitdht/src/lib/libbitdht.a ../../../../../../lib/sqlcipher/.libs/libsqlcipher.a ../../../../../openpgpsdk/src/lib/libops.a -lgnome-keyring -lupnp -lssl -lcrypto -lbz2 -lixml
|
LIBS *= ../../../lib/libretroshare.a \
|
||||||
|
../../../../../libbitdht/src/lib/libbitdht.a \
|
||||||
|
../../../../../../lib/sqlcipher/.libs/libsqlcipher.a \
|
||||||
|
../../../../../openpgpsdk/src/lib/libops.a \
|
||||||
|
../lib/libnscore.a \
|
||||||
|
-lgnome-keyring -lupnp -lssl -lcrypto -lbz2 -lixml
|
||||||
|
@ -1,11 +1,13 @@
|
|||||||
#include <fenv.h>
|
#include <fenv.h>
|
||||||
|
|
||||||
#include "Network.h"
|
|
||||||
#include "NetworkSimulatorGUI.h"
|
|
||||||
#include "MonitoredRsPeers.h"
|
|
||||||
#include <QApplication>
|
|
||||||
#include <util/argstream.h>
|
#include <util/argstream.h>
|
||||||
|
|
||||||
|
#include "nscore/Network.h"
|
||||||
|
#include "nscore/MonitoredRsPeers.h"
|
||||||
|
|
||||||
|
#include <QApplication>
|
||||||
|
|
||||||
|
#include "NetworkSimulatorGUI.h"
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
feenableexcept(FE_INVALID) ;
|
feenableexcept(FE_INVALID) ;
|
||||||
|
Loading…
Reference in New Issue
Block a user