CMakeLists.txt 796 Bytes
Newer Older
1
cmake_minimum_required(VERSION 2.8.8)
peter's avatar
peter committed
2

3
4
5
project(googletest-distribution)
set(GOOGLETEST_VERSION 1.9.0)

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

Joel Laity's avatar
Joel Laity committed
16
if (POLICY CMP0048)
17
  cmake_policy(SET CMP0048 NEW)
Joel Laity's avatar
Joel Laity committed
18
endif (POLICY CMP0048)
19

Fábio Junqueira's avatar
Fábio Junqueira committed
20
21
enable_testing()

22
include(CMakeDependentOption)
23
include(GNUInstallDirs)
24

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

Fábio Junqueira's avatar
Fábio Junqueira committed
29
30
if(BUILD_GMOCK)
  add_subdirectory( googlemock )
Stefano Soffia's avatar
Stefano Soffia committed
31
else()
Fábio Junqueira's avatar
Fábio Junqueira committed
32
33
  add_subdirectory( googletest )
endif()