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 cd0649bfbc init
2020-09-11 16:13:02 +08:00

11 lines
344 B
CMake

cmake_minimum_required(VERSION 3.5)
set(CMAKE_BUILD_TYPE Debug)
project(singleThread)
link_directories(/usr/local/lib64/)
#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})