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/gtest/CMakeLists.txt

13 lines
375 B
CMake
Raw Normal View History

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)