1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-06 09:09:40 +02:00

vcmi: make tests builds at least

This commit is contained in:
Konstantin
2023-02-28 14:29:35 +03:00
committed by Konstantin P
parent cf2304d8c7
commit 2680046dd0
15 changed files with 55 additions and 34 deletions

View File

@@ -1,4 +1,5 @@
include(GoogleTest)
include(CheckCXXCompilerFlag)
set(googleTest_Dir ${CMAKE_CURRENT_SOURCE_DIR}/googletest)
if(EXISTS ${googleTest_Dir})
@@ -148,6 +149,14 @@ set(mock_HEADERS
if(MSVC)
set(gtest_force_shared_crt ON CACHE BOOL "Use shared (DLL) run-time lib even when Google Test is built as static lib." FORCE)
endif()
check_cxx_compiler_flag(-Wimplicit-int-float-conversion CONV)
if(CONV)
add_compile_options(-Wno-error=implicit-int-float-conversion) #Used in googletest
endif()
check_cxx_compiler_flag(-Wdeprecated-copy-with-user-provided-copy COPY)
if(COPY)
add_compile_options(-Wno-deprecated-copy-with-user-provided-copy) #Used in googletest
endif()
add_subdirectory_with_folder("3rdparty" googletest EXCLUDE_FROM_ALL)
add_executable(vcmitest ${test_SRCS} ${test_HEADERS} ${mock_HEADERS})