Fábio Junqueira | 4a0b77f | 2015-11-11 18:29:41 -0200 | [diff] [blame^] | 1 | cmake_minimum_required(VERSION 2.6.2) |
2 | |||||
3 | project( googletest-distribution ) | ||||
4 | |||||
5 | enable_testing() | ||||
6 | |||||
7 | option(BUILD_GTEST "Builds the googletest subproject" OFF) | ||||
8 | |||||
9 | #Note that googlemock target already builds googletest | ||||
10 | option(BUILD_GMOCK "Builds the googlemock subproject" ON) | ||||
11 | |||||
12 | if(BUILD_GMOCK) | ||||
13 | add_subdirectory( googlemock ) | ||||
14 | elseif(BUILD_GTEST) | ||||
15 | add_subdirectory( googletest ) | ||||
16 | endif() |