mirror of
https://github.com/google/googletest.git
synced 2025-04-05 13:35:03 +00:00
Create CMakeLists.txt
Adding functionality to build googletest from the root directory
This commit is contained in:
parent
71a26ac68b
commit
4a0b77ff72
1 changed files with 16 additions and 0 deletions
16
CMakeLists.txt
Normal file
16
CMakeLists.txt
Normal file
|
@ -0,0 +1,16 @@
|
|||
cmake_minimum_required(VERSION 2.6.2)
|
||||
|
||||
project( googletest-distribution )
|
||||
|
||||
enable_testing()
|
||||
|
||||
option(BUILD_GTEST "Builds the googletest subproject" OFF)
|
||||
|
||||
#Note that googlemock target already builds googletest
|
||||
option(BUILD_GMOCK "Builds the googlemock subproject" ON)
|
||||
|
||||
if(BUILD_GMOCK)
|
||||
add_subdirectory( googlemock )
|
||||
elseif(BUILD_GTEST)
|
||||
add_subdirectory( googletest )
|
||||
endif()
|
Loading…
Add table
Reference in a new issue