blob: 2ffc55f299f5071ce80d65150785439c6e2473c8 [file] [log] [blame]
Marat Dukhan2dbdc2f2019-10-08 16:36:23 -07001# Copyright (c) Facebook, Inc. and its affiliates.
2# All rights reserved.
3#
4# Copyright 2019 Google LLC
5#
6# This source code is licensed under the BSD-style license found in the
7# LICENSE file in the root directory of this source tree.
8
9CMAKE_MINIMUM_REQUIRED(VERSION 3.5 FATAL_ERROR)
10
11PROJECT(googlebenchmark-download NONE)
12
13INCLUDE(ExternalProject)
14ExternalProject_Add(googlebenchmark
15 URL https://github.com/google/benchmark/archive/v1.4.1.zip
16 URL_HASH SHA256=61ae07eb5d4a0b02753419eb17a82b7d322786bb36ab62bd3df331a4d47c00a7
17 SOURCE_DIR "${CMAKE_BINARY_DIR}/googlebenchmark-source"
18 BINARY_DIR "${CMAKE_BINARY_DIR}/googlebenchmark"
19 CONFIGURE_COMMAND ""
20 BUILD_COMMAND ""
21 INSTALL_COMMAND ""
22 TEST_COMMAND ""
23)