Maxime Dupuis
/
NerfUS_cmake_cleanup
NerfUS_cmake_cleanup
Fork of NerfUS by
GoogleTest.cmake
- Committer:
- Maxime Dupuis
- Date:
- 2017-02-09
- Revision:
- 9:4731e16b1359
- Parent:
- 8:0498fa4f5c1f
File content as of revision 9:4731e16b1359:
cmake_minimum_required(VERSION 3.5) # Download and unpack googletest at configure time configure_file(CMakeLists.txt.in googletest-download/CMakeLists.txt) execute_process(COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" . WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/googletest-download ) execute_process(COMMAND ${CMAKE_COMMAND} --build . WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/googletest-download ) # Add googletest directly to our build. This adds the following targets: gtest, gtest_main, gmock and gmock_main add_subdirectory(${CMAKE_BINARY_DIR}/googletest-src ${CMAKE_BINARY_DIR}/googletest-build) include_directories("${gtest_SOURCE_DIR}/include")