mirror of
https://projects.blender.org/blender/blender.git
synced 2025-01-22 23:42:16 -05:00
00e8f9ae53
Refresh the extern copies of googletest and googlemock. Upstream: https://github.com/google/googletest/tree/v1.15.2 Pull Request: https://projects.blender.org/blender/blender/pulls/126895
65 lines
1.5 KiB
CMake
65 lines
1.5 KiB
CMake
# SPDX-FileCopyrightText: 2014 Blender Foundation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
# avoid noisy warnings
|
|
if(CMAKE_COMPILER_IS_GNUCC)
|
|
remove_cc_flag(
|
|
"-Wmissing-declarations"
|
|
)
|
|
endif()
|
|
|
|
set(INC
|
|
.
|
|
include
|
|
)
|
|
|
|
set(INC_SYS
|
|
|
|
)
|
|
|
|
set(SRC
|
|
# src/gtest-all.cc
|
|
# src/gtest_main.cc
|
|
|
|
src/gtest.cc
|
|
src/gtest-assertion-result.cc
|
|
src/gtest-death-test.cc
|
|
src/gtest-filepath.cc
|
|
src/gtest-matchers.cc
|
|
src/gtest-port.cc
|
|
src/gtest-printers.cc
|
|
src/gtest-test-part.cc
|
|
src/gtest-typed-test.cc
|
|
|
|
src/gtest-internal-inl.h
|
|
|
|
include/gtest/gtest.h
|
|
include/gtest/gtest_pred_impl.h
|
|
include/gtest/gtest_prod.h
|
|
include/gtest/gtest-assertion-result.h
|
|
include/gtest/gtest-death-test.h
|
|
include/gtest/gtest-matchers.h
|
|
include/gtest/gtest-message.h
|
|
include/gtest/gtest-param-test.h
|
|
include/gtest/gtest-printers.h
|
|
include/gtest/gtest-spi.h
|
|
include/gtest/gtest-test-part.h
|
|
include/gtest/gtest-typed-test.h
|
|
include/gtest/internal/custom/gtest.h
|
|
include/gtest/internal/custom/gtest-port.h
|
|
include/gtest/internal/custom/gtest-printers.h
|
|
include/gtest/internal/gtest-death-test-internal.h
|
|
include/gtest/internal/gtest-filepath.h
|
|
include/gtest/internal/gtest-internal.h
|
|
include/gtest/internal/gtest-param-util.h
|
|
include/gtest/internal/gtest-port.h
|
|
include/gtest/internal/gtest-port-arch.h
|
|
include/gtest/internal/gtest-string.h
|
|
include/gtest/internal/gtest-type-util.h
|
|
)
|
|
|
|
set(LIB
|
|
)
|
|
|
|
blender_add_lib(extern_gtest "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|