mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
e794fe0d01
From commit 880896c6f4814f4c7798355a652dc6167be2b75f in googletest cmake test configuration fails with errors like CMake Error: install(EXPORT "gtestConfigInternal" ...) includes target "gtest" which requires target "i3ipc++" that is not in the export set. The issue was that link_libraries also affected the googletest internal targets that came after it making the whole thing fail. This could also have been solved by moving link_libraries after the configuration of googletest but according to the cmake documentation [1] target_link_libraries should be prefered over link_libraries anyways. [1]: https://cmake.org/cmake/help/latest/command/link_libraries.html Fixes #1393
104 lines
3 KiB
CMake
104 lines
3 KiB
CMake
# Compile and link with coverage
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -fprofile-arcs -ftest-coverage -Wno-missing-field-initializers")
|
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fprofile-arcs -ftest-coverage")
|
|
|
|
include_directories(${dirs})
|
|
include_directories(${CMAKE_CURRENT_LIST_DIR})
|
|
|
|
# Download and unpack googletest at configure time {{{
|
|
configure_file(
|
|
CMakeLists.txt.in
|
|
${CMAKE_BINARY_DIR}/googletest-download/CMakeLists.txt
|
|
)
|
|
execute_process( COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
|
|
RESULT_VARIABLE result
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/googletest-download)
|
|
|
|
if(result)
|
|
message(FATAL_ERROR "CMake step for googletest failed: ${result}")
|
|
endif()
|
|
|
|
execute_process(COMMAND ${CMAKE_COMMAND} --build .
|
|
RESULT_VARIABLE result
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/googletest-download )
|
|
|
|
if(result)
|
|
message(FATAL_ERROR "Build step for googletest failed: ${result}")
|
|
endif()
|
|
|
|
# Add googletest directly to our build. This defines
|
|
# the gtest, gtest_main, gmock and gmock_main targets.
|
|
add_subdirectory(${CMAKE_BINARY_DIR}/googletest-src
|
|
${CMAKE_BINARY_DIR}/googletest-build
|
|
EXCLUDE_FROM_ALL)
|
|
|
|
# }}}
|
|
|
|
# Disable errors for warnings so that we can run tests even with some warnings
|
|
string(REGEX REPLACE "-Werror[^ ]*" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
|
|
string(REPLACE "-pedantic-errors" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
|
|
|
|
function(unit_test file tests)
|
|
set(multi_value_args SOURCES)
|
|
|
|
cmake_parse_arguments("BIN" "" "" "${multi_value_args}" ${ARGN})
|
|
|
|
# Prefix all sources needed by the tests with ../src/ so that the calls to the
|
|
# unit_test function become cleaner
|
|
SET(sources "")
|
|
FOREACH(f ${BIN_SOURCES})
|
|
# Do not add main.cpp, because it will override the main function
|
|
if(NOT "${f}" STREQUAL "main.cpp")
|
|
LIST(APPEND sources "../src/${f}")
|
|
endif()
|
|
ENDFOREACH(f)
|
|
|
|
string(REPLACE "/" "_" testname ${file})
|
|
set(name "unit_test.${testname}")
|
|
add_executable(${name} unit_tests/${file}.cpp ${sources})
|
|
|
|
# Link against gmock (this automatically links against gtest)
|
|
target_link_libraries(${name} gmock_main ${libs})
|
|
|
|
add_test(NAME ${name} COMMAND ${name})
|
|
|
|
# Add test to list of unit tests
|
|
list(APPEND ${tests} "${name}")
|
|
set(${tests} ${${tests}} PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
unit_test(utils/color unit_tests)
|
|
|
|
unit_test(utils/math unit_tests)
|
|
|
|
unit_test(utils/memory unit_tests)
|
|
|
|
unit_test(utils/scope unit_tests)
|
|
|
|
unit_test(utils/string unit_tests
|
|
SOURCES
|
|
utils/string.cpp)
|
|
|
|
unit_test(utils/file unit_tests
|
|
SOURCES
|
|
utils/command.cpp
|
|
utils/file.cpp
|
|
utils/env.cpp
|
|
utils/process.cpp
|
|
utils/io.cpp
|
|
utils/string.cpp
|
|
utils/concurrency.cpp
|
|
components/logger.cpp)
|
|
unit_test(components/command_line unit_tests
|
|
SOURCES
|
|
components/command_line.cpp
|
|
utils/string.cpp)
|
|
|
|
unit_test(components/bar unit_tests)
|
|
|
|
unit_test(components/builder unit_tests
|
|
SOURCES
|
|
${files})
|
|
|
|
# Compile all unit tests with 'make all_unit_tests'
|
|
add_custom_target("all_unit_tests" DEPENDS ${unit_tests})
|