Files
openvehicle-api/tests/unit_tests/trace_fifo/CMakeLists.txt

46 lines
1.5 KiB
CMake
Raw Normal View History

2026-03-27 14:12:49 +01:00
#*******************************************************************************
# 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(UnitTest_TraceFifo VERSION 1.0 LANGUAGES CXX)
# Add executable
add_executable(UnitTest_TraceFifo
"main.cpp"
"fifo_test.cpp"
)
# Link target
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
target_link_libraries(UnitTest_TraceFifo GTest::GTest ${CMAKE_THREAD_LIBS_INIT} stdc++fs)
if (WIN32)
target_link_libraries(UnitTest_TraceFifo Ws2_32 Winmm Rpcrt4.lib)
else()
target_link_libraries(UnitTest_TraceFifo ${CMAKE_DL_LIBS} rt)
endif()
else()
target_link_libraries(UnitTest_TraceFifo GTest::GTest Rpcrt4.lib)
endif()
# Add test
add_test(NAME UnitTest_TraceFifo COMMAND UnitTest_TraceFifo)
# Execute test
add_custom_command(TARGET UnitTest_TraceFifo POST_BUILD
COMMAND ${CMAKE_COMMAND} -E env TEST_EXECUTION_MODE=CMake "$<TARGET_FILE:UnitTest_TraceFifo>" --gtest_output=xml:${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/UnitTest_TraceFifo.xml
VERBATIM
)
# Build dependencies
2026-03-27 14:12:49 +01:00
add_dependencies(UnitTest_TraceFifo dependency_sdv_components)