You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
558 B
16 lines
558 B
7 years ago
|
# Distributed under the OSI-approved MIT License. See accompanying
|
||
|
# file LICENSE or https://github.com/Crascit/DownloadProject for details.
|
||
|
|
||
|
cmake_minimum_required(VERSION 2.8.2)
|
||
|
|
||
|
project(${DL_ARGS_PROJ}-download NONE)
|
||
|
|
||
|
include(ExternalProject)
|
||
|
ExternalProject_Add(${DL_ARGS_PROJ}-download
|
||
|
${DL_ARGS_UNPARSED_ARGUMENTS}
|
||
|
SOURCE_DIR "${DL_ARGS_SOURCE_DIR}"
|
||
|
BINARY_DIR "${DL_ARGS_BINARY_DIR}"
|
||
|
BUILD_COMMAND ""
|
||
|
TEST_COMMAND ""
|
||
|
)
|