diff options
author | Fred Baksik <frodak17@gmail.com> | 2019-04-08 13:55:35 (GMT) |
---|---|---|
committer | Fred Baksik <frodak17@gmail.com> | 2019-04-11 17:15:51 (GMT) |
commit | 2bae6a1346cb95703a93dbf73c9689598c9056d1 (patch) | |
tree | 9304fb174a264982b53a610260284e79f084b6d5 /Tests/GhsMulti/GhsMultiExternalProject | |
parent | 3b415c60c1a02b9ac76089a44c28e70692dcdef1 (diff) | |
download | CMake-2bae6a1346cb95703a93dbf73c9689598c9056d1.zip CMake-2bae6a1346cb95703a93dbf73c9689598c9056d1.tar.gz CMake-2bae6a1346cb95703a93dbf73c9689598c9056d1.tar.bz2 |
GHS: Update tests and notes
-- add new tests for custom commands
-- minor test cleanup
Fixes #15995
Fixes #18909
Fixes #15902
Diffstat (limited to 'Tests/GhsMulti/GhsMultiExternalProject')
-rw-r--r-- | Tests/GhsMulti/GhsMultiExternalProject/CMakeLists.txt | 14 | ||||
-rw-r--r-- | Tests/GhsMulti/GhsMultiExternalProject/empty/CMakeLists.txt | 8 |
2 files changed, 22 insertions, 0 deletions
diff --git a/Tests/GhsMulti/GhsMultiExternalProject/CMakeLists.txt b/Tests/GhsMulti/GhsMultiExternalProject/CMakeLists.txt new file mode 100644 index 0000000..24126c8 --- /dev/null +++ b/Tests/GhsMulti/GhsMultiExternalProject/CMakeLists.txt @@ -0,0 +1,14 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.12 FATAL_ERROR) + +project(test C) +include(ExternalProject) + +ExternalProject_Add(another_project + SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/empty + BINARY_DIR empty_build + INSTALL_COMMAND "" + TEST_COMMAND "" + ) diff --git a/Tests/GhsMulti/GhsMultiExternalProject/empty/CMakeLists.txt b/Tests/GhsMulti/GhsMultiExternalProject/empty/CMakeLists.txt new file mode 100644 index 0000000..6846a98 --- /dev/null +++ b/Tests/GhsMulti/GhsMultiExternalProject/empty/CMakeLists.txt @@ -0,0 +1,8 @@ +# Distributed under the OSI-approved BSD 3-Clause License. See accompanying +# file Copyright.txt or https://cmake.org/licensing for details. + +cmake_minimum_required(VERSION 3.12 FATAL_ERROR) + +project(empty NONE) + +message("EMPTY PROJECT") |