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

14 lines
377 B
CMake
Raw Normal View History

2020-09-11 16:13:02 +08:00
cmake_minimum_required(VERSION 3.5)
set(CMAKE_BUILD_TYPE Debug)
2020-09-23 19:06:09 +08:00
project(hos_write_complete)
2020-09-11 16:13:02 +08:00
SET(CMAKE_BUILD_TYPE Debug)
2020-09-11 16:13:02 +08:00
link_directories(/usr/local/lib64/)
link_directories(/opt/MESA/lib/)
2020-09-22 17:22:21 +08:00
link_libraries(hos-client-cpp)
include_directories(/opt/MESA/include)
2020-09-23 19:06:09 +08:00
add_executable(hos_write_complete hos_write_complete.cpp)
target_link_libraries(hos_write_complete hos-client-cpp)
2020-09-11 16:13:02 +08:00