blob: d449c611848ee6f13e91220ace570ca8a4cb85b2 [file] [log] [blame]
# Copyright (c) Facebook, Inc. and its affiliates.
# All rights reserved.
#
# Copyright 2019 Google LLC
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
CMAKE_MINIMUM_REQUIRED(VERSION 3.5 FATAL_ERROR)
PROJECT(pthreadpool-download NONE)
INCLUDE(ExternalProject)
ExternalProject_Add(pthreadpool
URL https://github.com/Maratyszcza/pthreadpool/archive/9b2c0caf7d9843f25709178b0cd7030892a1ff88.zip
URL_HASH SHA256=ad6b6b2da1e10d3d33ad9b5f61aca30b73ce7b45d15e77cb295c4860460d7ee7
SOURCE_DIR "${CMAKE_BINARY_DIR}/pthreadpool-source"
BINARY_DIR "${CMAKE_BINARY_DIR}/pthreadpool"
CONFIGURE_COMMAND ""
BUILD_COMMAND ""
INSTALL_COMMAND ""
TEST_COMMAND ""
)