Back to home page

sPhenix code displayed by LXR

 
 

    


Warning, /JETSCAPE/external_packages/googletest/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 cmake_minimum_required(VERSION 2.6.4)
0002 
0003 project( googletest-distribution )
0004 
0005 enable_testing()
0006 
0007 option(BUILD_GTEST "Builds the googletest subproject" OFF)
0008 
0009 #Note that googlemock target already builds googletest
0010 option(BUILD_GMOCK "Builds the googlemock subproject" ON)
0011 
0012 if(BUILD_GMOCK)
0013   add_subdirectory( googlemock )
0014 elseif(BUILD_GTEST)
0015   add_subdirectory( googletest )
0016 endif()