feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

12
gtest/CMakeLists.txt Normal file
View File

@@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.0)
project(gtest_hos_client)
aux_source_directory(. SRCS)
include_directories("/opt/MESA/include")
link_directories("/opt/MESA/lib")
link_libraries(hos-client-cpp gtest gtest_main pthread)
add_definitions(-g -W -Wall)
add_executable(gtest_hos_client ${SRCS})
target_link_libraries(gtest_hos_client hos-client-cpp gtest gtest_main pthread)