mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
dcd33057fd
gtest recommends using the `master` branch as it follows the "Live at Head" philosophy. [1]: https://github.com/google/googletest#live-at-head
15 lines
440 B
Text
15 lines
440 B
Text
cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR)
|
|
|
|
project(googletest-download NONE)
|
|
|
|
include(ExternalProject)
|
|
ExternalProject_Add(googletest
|
|
GIT_REPOSITORY https://github.com/google/googletest.git
|
|
GIT_TAG master
|
|
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
|
|
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
TEST_COMMAND ""
|
|
)
|