26 lines
531 B
CMake
26 lines
531 B
CMake
# Copyright 2017-2020 The Khronos Group Inc.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
add_library( gtest STATIC
|
|
src/gtest-all.cc
|
|
src/gtest-internal-inl.h
|
|
src/gtest_main.cc
|
|
)
|
|
|
|
target_include_directories(
|
|
gtest
|
|
PUBLIC
|
|
include
|
|
.
|
|
)
|
|
|
|
target_compile_features(gtest PUBLIC cxx_std_11)
|
|
|
|
if(${CMAKE_CXX_COMPILER_ID} STREQUAL "GNU" OR ${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
|
|
set_source_files_properties(
|
|
src/gtest-all.cc
|
|
PROPERTIES COMPILE_OPTIONS "-Wno-missing-field-initializers"
|
|
)
|
|
endif()
|
|
|