Rework book server and client.

This commit is contained in:
Chunting Gu
2019-09-06 17:40:46 +08:00
parent f1ad97b227
commit 2a25340ce4
24 changed files with 1120 additions and 301 deletions
+14
View File
@@ -0,0 +1,14 @@
set(SRCS
book.cc
book.h
book_db.cc
book_db.h
book_json.cc
book_json.h
views.cc
views.h
main.cc
)
add_executable(book_server ${SRCS})
target_link_libraries(book_server ${EXAMPLE_LIBS} jsoncpp)