X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Makefile.am;h=bea0ada8a3add85cbe0a7eb0064d30c6e6ddd515;hb=65fb3b1375a1baaf75a581582a4c8d0d62fbabb6;hp=acd2cb65b817bc4061449823d5c44d67df5a8f69;hpb=8324d029ce006509ddbc605446d05987c17e0368;p=ric-plt%2Fsdl.git diff --git a/Makefile.am b/Makefile.am index acd2cb6..bea0ada 100644 --- a/Makefile.am +++ b/Makefile.am @@ -35,6 +35,7 @@ libsdl_la_SOURCES = \ include/private/namespaceconfigurations.hpp \ include/private/namespaceconfigurationsimpl.hpp \ include/private/namespacevalidator.hpp \ + include/private/stdstreamlogger.hpp \ include/private/syncstorageimpl.hpp \ include/private/system.hpp \ include/private/timer.hpp \ @@ -67,6 +68,7 @@ libsdl_la_SOURCES = \ src/publisherid.cpp \ src/rejectedbybackend.cpp \ src/rejectedbysdl.cpp \ + src/stdstreamlogger.cpp \ src/syncstorage.cpp \ src/syncstorageimpl.cpp \ src/system.cpp \ @@ -85,6 +87,7 @@ libsdl_la_SOURCES += \ include/private/redis/asyncdatabasediscovery.hpp \ include/private/redis/asyncredisreply.hpp \ include/private/redis/asyncredisstorage.hpp \ + include/private/redis/asyncsentineldatabasediscovery.hpp \ include/private/redis/contents.hpp \ include/private/redis/contentsbuilder.hpp \ include/private/redis/databaseinfo.hpp \ @@ -93,6 +96,7 @@ libsdl_la_SOURCES += \ src/redis/asyncdatabasediscovery.cpp \ src/redis/asyncredisreply.cpp \ src/redis/asyncredisstorage.cpp \ + src/redis/asyncsentineldatabasediscovery.cpp \ src/redis/contentsbuilder.cpp endif if HIREDIS @@ -117,11 +121,6 @@ libsdl_la_SOURCES += \ src/redis/hiredisclusterepolladapter.cpp \ src/redis/hiredisclustersystem.cpp endif -if SENTINEL -libsdl_la_SOURCES += \ - include/private/redis/asyncsentineldatabasediscovery.hpp \ - src/redis/asyncsentineldatabasediscovery.cpp -endif libsdl_la_CPPFLAGS = \ $(BASE_CPPFLAGS) \ $(HIREDIS_CFLAGS) \ @@ -350,6 +349,7 @@ testrunner_SOURCES += \ tst/asynccommanddispatcher_test.cpp \ tst/asyncdatabasediscovery_test.cpp \ tst/asyncredisstorage_test.cpp \ + tst/asyncsentineldatabasediscovery_test.cpp \ tst/asyncstorageimpl_test.cpp \ tst/contents_test.cpp \ tst/contentsbuilder_test.cpp \ @@ -375,10 +375,6 @@ testrunner_SOURCES += \ tst/hiredisclusterepolladapter_test.cpp \ tst/hiredisclustersystem_test.cpp endif -if SENTINEL -testrunner_SOURCES += \ - tst/asyncsentineldatabasediscovery_test.cpp -endif testrunner_CPPFLAGS = \ $(BASE_CPPFLAGS) \ -I$(top_srcdir)/3rdparty/googletest/googlemock/include \