1# Copyright 2016 The Chromium Embedded Framework Authors. All rights 2# reserved. Use of this source code is governed by a BSD-style license that 3# can be found in the LICENSE file. 4 5set(CEF_TARGET "cef_gtest") 6 7set(GTEST_SRCS 8 src/gtest-all.cc 9 ) 10source_group(cef_gtest FILES ${GTEST_SRCS}) 11 12add_library(${CEF_TARGET} ${GTEST_SRCS}) 13 14# Start with CEF default properties. 15SET_LIBRARY_TARGET_PROPERTIES(${CEF_TARGET}) 16 17# The gtest-all.cc file uses #include "gtest/gtest.h" 18target_include_directories(${CEF_TARGET} PRIVATE "include") 19 20# In order to allow regex matches in gtest to be shared between Windows 21# and other systems we tell gtest to always use it's internal engine. 22target_compile_definitions(${CEF_TARGET} PRIVATE -DGTEST_HAS_POSIX_RE=0 -DGTEST_LANG_CXX11=1) 23 24# All dependent targets are unit tests. 25target_compile_definitions(${CEF_TARGET} PUBLIC -DUNIT_TEST) 26 27if(OS_WINDOWS) 28 # Disable unused variable warning. 29 target_compile_options(${CEF_TARGET} PRIVATE "/wd4800") 30endif() 31