mirror of
https://github.com/polybar/polybar.git
synced 2024-11-11 13:50:56 -05:00
16b2970bd7
This includes the changes from polybar/xpp#30 which also updates the minimum cmake version in the xpp submodule
15 lines
474 B
Text
15 lines
474 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 18f8200e3079b0e54fa00cb7ac55d4c39dcf6da6
|
|
SOURCE_DIR "${CMAKE_BINARY_DIR}/googletest-src"
|
|
BINARY_DIR "${CMAKE_BINARY_DIR}/googletest-build"
|
|
CONFIGURE_COMMAND ""
|
|
BUILD_COMMAND ""
|
|
INSTALL_COMMAND ""
|
|
TEST_COMMAND ""
|
|
)
|