mirror of
https://github.com/eclipse-openvehicle-api/openvehicle-api.git
synced 2026-04-18 10:38:16 +00:00
39 lines
1.4 KiB
CMake
39 lines
1.4 KiB
CMake
#*******************************************************************************
|
|
# Copyright (c) 2025-2026 ZF Friedrichshafen AG
|
|
#
|
|
# This program and the accompanying materials are made available under the
|
|
# terms of the Apache License Version 2.0 which is available at
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Contributors:
|
|
# Erik Verhoeven - initial API and implementation
|
|
#*******************************************************************************
|
|
|
|
# Define project
|
|
project(ConcurrencyTests VERSION 1.0 LANGUAGES CXX)
|
|
|
|
# Define target
|
|
add_executable(UnitTest_Concurrency concurrency_tests.cpp)
|
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
target_link_libraries(UnitTest_Concurrency GTest::GTest)
|
|
if (WIN32)
|
|
target_link_libraries(UnitTest_Concurrency Ws2_32 Winmm Rpcrt4.lib)
|
|
else()
|
|
target_link_libraries(UnitTest_Concurrency ${CMAKE_DL_LIBS} rt)
|
|
endif()
|
|
else()
|
|
target_link_libraries(UnitTest_Concurrency GTest::GTest Rpcrt4.lib)
|
|
endif()
|
|
|
|
# Add the test
|
|
add_test(NAME UnitTest_Concurrency COMMAND UnitTest_Concurrency WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
|
|
|
|
# Execute the test
|
|
add_custom_command(TARGET UnitTest_Concurrency POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E env TEST_EXECUTION_MODE=CMake "$<TARGET_FILE:UnitTest_Concurrency>" --gtest_output=xml:${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/UnitTest_Concurrency.xml
|
|
VERBATIM
|
|
)
|