| # Copyright (c) 2017 Facebook Inc. |
| # Copyright (c) 2015-2017 Georgia Institute of Technology |
| # 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(fxdiv-download NONE) |
| |
| INCLUDE(ExternalProject) |
| ExternalProject_Add(fxdiv |
| GIT_REPOSITORY https://github.com/Maratyszcza/FXdiv.git |
| GIT_TAG master |
| SOURCE_DIR "${CMAKE_BINARY_DIR}/FXdiv-source" |
| BINARY_DIR "${CMAKE_BINARY_DIR}/FXdiv" |
| CONFIGURE_COMMAND "" |
| BUILD_COMMAND "" |
| INSTALL_COMMAND "" |
| TEST_COMMAND "" |
| ) |