CMakeLists.txt 886 Bytes
Newer Older
1
# Note: CMake support is community-based. The maintainers do not use CMake
misterg's avatar
misterg committed
2
3
# internally.

4
cmake_minimum_required(VERSION 2.8.8)
peter's avatar
peter committed
5

6
7
8
project(googletest-distribution)
set(GOOGLETEST_VERSION 1.9.0)

peter's avatar
peter committed
9
10
11
12
if (CMAKE_VERSION VERSION_LESS "3.1")
  add_definitions(-std=c++11)
else()
  set(CMAKE_CXX_STANDARD 11)
peter's avatar
peter committed
13
  set(CMAKE_CXX_STANDARD_REQUIRED ON)
14
15
16
  if(NOT CYGWIN)
    set(CMAKE_CXX_EXTENSIONS OFF)
  endif()
peter's avatar
peter committed
17
endif()
Fábio Junqueira's avatar
Fábio Junqueira committed
18

Joel Laity's avatar
Joel Laity committed
19
if (POLICY CMP0048)
20
  cmake_policy(SET CMP0048 NEW)
Joel Laity's avatar
Joel Laity committed
21
endif (POLICY CMP0048)
22

Fábio Junqueira's avatar
Fábio Junqueira committed
23
24
enable_testing()

25
include(CMakeDependentOption)
26
include(GNUInstallDirs)
27

Fábio Junqueira's avatar
Fábio Junqueira committed
28
29
#Note that googlemock target already builds googletest
option(BUILD_GMOCK "Builds the googlemock subproject" ON)
Stefano Soffia's avatar
Stefano Soffia committed
30
option(INSTALL_GTEST "Enable installation of googletest. (Projects embedding googletest may want to turn this OFF.)" ON)
31

Fábio Junqueira's avatar
Fábio Junqueira committed
32
33
if(BUILD_GMOCK)
  add_subdirectory( googlemock )
Stefano Soffia's avatar
Stefano Soffia committed
34
else()
Fábio Junqueira's avatar
Fábio Junqueira committed
35
36
  add_subdirectory( googletest )
endif()