Migrate validators and testoverlay to the new style of source organization

This commit is contained in:
Vinnie Falco
2013-09-11 19:52:16 -07:00
parent fb804bd1bd
commit a48bcfeddb
34 changed files with 1491 additions and 184 deletions

View File

@@ -43,7 +43,6 @@ linux-g++:QMAKE_CXXFLAGS += \
-pthread
INCLUDEPATH += \
"../.." \
"../../src" \
"../../src/leveldb/" \
"../../src/leveldb/port" \
@@ -58,6 +57,9 @@ OTHER_FILES += \
UI_HEADERS_DIR += ../../src/ripple_basics
# -----
# Beast
#
SOURCES += \
../../src/beast/modules/beast_asio/beast_asio.cpp \
../../src/beast/modules/beast_core/beast_core.cpp \
@@ -65,7 +67,12 @@ SOURCES += \
../../src/beast/modules/beast_db/beast_db.cpp \
../../src/beast/modules/beast_extras/beast_extras.cpp \
../../src/beast/modules/beast_sqdb/beast_sqdb.cpp \
../../src/beast/modules/beast_sqlite/beast_sqlite.c \
../../src/beast/modules/beast_sqlite/beast_sqlite.c
# ---------
# Old style
#
SOURCES += \
../../src/ripple_app/ripple_app.cpp \
../../src/ripple_app/ripple_app_pt1.cpp \
../../src/ripple_app/ripple_app_pt2.cpp \
@@ -84,6 +91,13 @@ SOURCES += \
../../src/ripple_net/ripple_net.cpp \
../../src/ripple_websocket/ripple_websocket.cpp
# ---------
# New style
#
SOURCES += \
../../src/ripple/testoverlay/ripple_testoverlay.cpp \
../../src/ripple/validators/ripple_validators.cpp
LIBS += \
-lboost_date_time-mt\
-lboost_filesystem-mt \