2020-07-08 09:22:25 +00:00
|
|
|
cmake_minimum_required(VERSION 3.17)
|
2012-09-08 01:05:12 +00:00
|
|
|
|
|
|
|
# gtest-all.cc includes all other sources
|
|
|
|
add_library(gtest STATIC src/gtest-all.cc)
|
2020-07-10 16:49:54 +00:00
|
|
|
target_include_directories(gtest PUBLIC . include)
|
|
|
|
target_compile_definitions(gtest PUBLIC GTEST_HAS_TR1_TUPLE=0)
|