blob: b7e2f34e31b2c31864b5e65fced42032d84a217e [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(psimd-download NONE)
12
13INCLUDE(ExternalProject)
14ExternalProject_Add(psimd
Marat Dukhan8d3c07e2020-01-02 01:20:59 -080015 URL https://github.com/Maratyszcza/psimd/archive/10b4ffc6ea9e2e11668f86969586f88bc82aaefa.tar.gz
16 URL_HASH SHA256=1fefd66702cb2eb3462b962f33d4fb23d59a55d5889ee6372469d286c4512df4
Marat Dukhan2dbdc2f2019-10-08 16:36:23 -070017 SOURCE_DIR "${CMAKE_BINARY_DIR}/psimd-source"
18 BINARY_DIR "${CMAKE_BINARY_DIR}/psimd"
19 CONFIGURE_COMMAND ""
20 BUILD_COMMAND ""
21 INSTALL_COMMAND ""
22 TEST_COMMAND ""
23)