Added the initial implementation of the shardrouter module.

This commit is contained in:
Markus Makela
2015-01-23 06:40:30 +02:00
parent db1ea422a0
commit 8791cc455e
7 changed files with 3207 additions and 4821 deletions

View File

@ -10,6 +10,10 @@ add_library(dbshard SHARED dbshard/dbshard.c)
target_link_libraries(dbshard log_manager utils query_classifier)
install(TARGETS dbshard DESTINATION modules)
add_library(shardrouter SHARED dbshard/shardrouter.c)
target_link_libraries(shardrouter log_manager utils query_classifier)
install(TARGETS shardrouter DESTINATION modules)
add_library(readconnroute SHARED readconnroute.c)
target_link_libraries(readconnroute log_manager utils)
install(TARGETS readconnroute DESTINATION modules)