🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
511 B

  1. project(googletest-download NONE)
  2. cmake_minimum_required(VERSION 3.2)
  3. include(ExternalProject)
  4. ExternalProject_Add(
  5. googletest
  6. GIT_REPOSITORY https://github.com/google/googletest.git
  7. GIT_TAG master
  8. DOWNLOAD_DIR ${GOOGLETEST_DEPS_DIR}
  9. TMP_DIR ${GOOGLETEST_DEPS_DIR}/tmp
  10. STAMP_DIR ${GOOGLETEST_DEPS_DIR}/stamp
  11. SOURCE_DIR ${GOOGLETEST_DEPS_DIR}/src
  12. BINARY_DIR ${GOOGLETEST_DEPS_DIR}/build
  13. CONFIGURE_COMMAND ""
  14. BUILD_COMMAND ""
  15. INSTALL_COMMAND ""
  16. TEST_COMMAND ""
  17. )