blob: a121cc58e0be2cfa4a6b9862b5a0826815985d11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
Bump minimum CMake version to fix build with CMake 4
Unbundle gtest
https://bugs.gentoo.org/863050
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,7 +38,7 @@
ENDIF()
ENDIF()
ELSE()
-cmake_minimum_required (VERSION 2.8)
+cmake_minimum_required (VERSION 3.5)
if (NOT DEFINED CMAKE_BUILD_TYPE)
set (CMAKE_BUILD_TYPE Release CACHE STRING "Build type")
@@ -161,8 +161,6 @@
################# compile tests ################
-ADD_SUBDIRECTORY( lib/googletest )
-
if(COMPILER_SUPPORTS_CXX11)
ADD_SUBDIRECTORY( tests )
endif()
|