summaryrefslogtreecommitdiffstats
path: root/Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-04-15 14:52:11 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-04-15 14:52:21 (GMT)
commit0793464d95c3dbbe9ed87bb5882d29efb7a8e3c3 (patch)
tree54458011255823399eed7a0b76f5db980e8a4aa3 /Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt
parente2128e11ac7ac38f33100f5277cb4ace8697bad8 (diff)
parent2bae6a1346cb95703a93dbf73c9689598c9056d1 (diff)
downloadCMake-0793464d95c3dbbe9ed87bb5882d29efb7a8e3c3.zip
CMake-0793464d95c3dbbe9ed87bb5882d29efb7a8e3c3.tar.gz
CMake-0793464d95c3dbbe9ed87bb5882d29efb7a8e3c3.tar.bz2
Merge topic 'ghs_custom'
2bae6a1346 GHS: Update tests and notes 3b415c60c1 GHS: Update ExternalProject for GHS tools 83c47ef5b8 GHS: Update project layout to accommodate gbuild inconsistencies 5d2e1404bd GHS: Update project layout to build targets correctly b6bfa7eeb2 GHS: Support add_dependencies() command 39ee9718d9 GHS: Support add_custom_target() command 8d3dad9a76 GHS: Support add_custom_command( OUTPUT ) signature 37acc9e229 GHS: Update custom command build events Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Narendhar Manimohan <narendhar15@gmail.com> Merge-request: !3119
Diffstat (limited to 'Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt')
-rw-r--r--Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt b/Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt
new file mode 100644
index 0000000..2e2871b
--- /dev/null
+++ b/Tests/GhsMulti/GhsMultiDepOrder/CMakeLists.txt
@@ -0,0 +1,12 @@
+# 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)
+
+#set_property( GLOBAL PROPERTY GLOBAL_DEPENDS_DEBUG_MODE 1)
+add_subdirectory(exec)
+add_subdirectory(lib)
+add_subdirectory(protolib)
+add_dependencies(lib1 proto)