Initial client API V2

This commit is contained in:
Chunting Gu
2019-03-06 11:13:33 +08:00
parent b38b7e6d38
commit 9b8304f06c
38 changed files with 777 additions and 362 deletions
+7 -1
View File
@@ -1,8 +1,14 @@
# Unit test
set(UT_SRCS
rest_service_manager_test.cc
url_test.cc
)
if(WEBCC_ENABLE_REST)
set(UT_SRCS ${UT_SRCS}
rest_service_manager_test.cc
)
endif()
set(UT_TARGET_NAME webcc_unittest)
add_executable(${UT_TARGET_NAME} ${UT_SRCS})