mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-07 18:52:30 +00:00
9f48226663
Inline nlohmann/json for the JSON parsing itself, and handle requests with the same SCGI interface as XML-RPC. Based off the work in https://github.com/jesec/rtorrent
30 lines
714 B
Makefile
30 lines
714 B
Makefile
TESTS = rtorrentTest
|
|
|
|
check_PROGRAMS = $(TESTS)
|
|
rtorrentTest_LDADD = ../src/libsub_root.a
|
|
|
|
rtorrentTest_SOURCES = \
|
|
helpers/assert.h \
|
|
rpc/command_test.cc \
|
|
rpc/command_test.h \
|
|
rpc/command_map_test.cc \
|
|
rpc/command_map_test.h \
|
|
rpc/jsonrpc_test.cc \
|
|
rpc/jsonrpc_test.h \
|
|
rpc/xmlrpc_test.cc \
|
|
rpc/xmlrpc_test.h \
|
|
rpc/command_slot_test.cc \
|
|
rpc/command_slot_test.h \
|
|
rpc/object_storage_test.cc \
|
|
rpc/object_storage_test.h \
|
|
rpc/test_parse_options.cc \
|
|
rpc/test_parse_options.h \
|
|
src/command_dynamic_test.cc \
|
|
src/command_dynamic_test.h \
|
|
main.cc
|
|
|
|
rtorrentTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
|
rtorrentTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
|
|
|
AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_srcdir)/src
|