# Copyright (C) 2015-2022 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. project ("benchmark_tests_bin" LANGUAGES CXX) file (GLOB SRCS main.cpp **/*.cpp ../common/utility.cpp) set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) find_package(Boost 1.55 COMPONENTS filesystem system REQUIRED) # ---------------------------------------------------------------------------- # Executable and libraries to link # ---------------------------------------------------------------------------- add_executable (${PROJECT_NAME} ${SRCS} ) target_link_libraries ( ${PROJECT_NAME} vsomeip3 vsomeip3-cfg Threads::Threads ${Boost_LIBRARIES} ${DL_LIBRARY} benchmark::benchmark gtest ) add_dependencies(build_benchmark_tests ${PROJECT_NAME})