This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/example/CMakeLists.txt
pengxuanzheng a00d892928 1.修复SSL connect error 问题
2.修复hos_create_bucket时,出现bucekt already exits的问题
3.修复upload时,远端地址无法解析的问题
2020-09-14 19:19:50 +08:00

14 lines
436 B
CMake

cmake_minimum_required(VERSION 3.5)
set(CMAKE_BUILD_TYPE Debug)
project(singleThread)
SET(CMAKE_BUILD_TYPE Debug)
link_directories(/usr/local/lib64/)
link_directories(/opt/MESA/lib/)
link_libraries(hos_client_cpp)
#set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR})
add_executable(singleThread single_thread.cpp)
target_link_libraries(singleThread hos_client_cpp)
#install(TARGETS singleThread DESTINATION ${CMAKE_CURRENT_SOURCE_DIR})