diff options
author | Ritchie <paulx161@umn.edu> | 2021-01-20 13:31:42 -0600 |
---|---|---|
committer | GitHub Enterprise <noreply-github@umn.edu> | 2021-01-20 13:31:42 -0600 |
commit | 9ef7449585f9e9e77516df31bcd6a90a72c20d16 (patch) | |
tree | ddecd4d13d9d9e6a0c4bc76cc45eef765567e4e3 /dev/gfxtest/cmake/DownloadHelper.txt.in | |
parent | Updated README.md (diff) | |
download | csci4611-9ef7449585f9e9e77516df31bcd6a90a72c20d16.tar csci4611-9ef7449585f9e9e77516df31bcd6a90a72c20d16.tar.gz csci4611-9ef7449585f9e9e77516df31bcd6a90a72c20d16.tar.bz2 csci4611-9ef7449585f9e9e77516df31bcd6a90a72c20d16.tar.lz csci4611-9ef7449585f9e9e77516df31bcd6a90a72c20d16.tar.xz csci4611-9ef7449585f9e9e77516df31bcd6a90a72c20d16.tar.zst csci4611-9ef7449585f9e9e77516df31bcd6a90a72c20d16.zip |
Added /dev/gfxtest/*
Diffstat (limited to 'dev/gfxtest/cmake/DownloadHelper.txt.in')
-rw-r--r-- | dev/gfxtest/cmake/DownloadHelper.txt.in | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev/gfxtest/cmake/DownloadHelper.txt.in b/dev/gfxtest/cmake/DownloadHelper.txt.in new file mode 100644 index 0000000..69f3039 --- /dev/null +++ b/dev/gfxtest/cmake/DownloadHelper.txt.in @@ -0,0 +1,26 @@ +# This file is part of the MinGfx cmake build system.
+# See the main MinGfx/CMakeLists.txt file for authors, copyright, and license info.
+
+# This is a "helper" cmake project -- the only thing this project does is download
+# the external project. So, the configure, build, install, and test commands for
+# ExternalProject_Add() are intentionally set as NOPs.
+
+cmake_minimum_required (VERSION 3.9)
+
+project(@EXT_PROJECT_NAME@-download)
+
+include(ExternalProject)
+ExternalProject_Add(
+ @EXT_PROJECT_NAME@
+ SOURCE_DIR "@DOWNLOAD_DIR@/@EXT_PROJECT_NAME@/src"
+ BINARY_DIR "@DOWNLOAD_DIR@/@EXT_PROJECT_NAME@/download-helper"
+ @DOWNLOAD_OPTIONS@
+ CONFIGURE_COMMAND ""
+ BUILD_COMMAND ""
+ INSTALL_COMMAND ""
+ TEST_COMMAND ""
+ LOG_DOWNLOAD ON
+ GIT_PROGRESS 1
+)
+
+
|