summaryrefslogtreecommitdiffstats
path: root/Source/cmCMakeLanguageCommand.h
diff options
context:
space:
mode:
authorCraig Scott <craig.scott@crascit.com>2020-05-22 14:25:15 (GMT)
committerKitware Robot <kwrobot@kitware.com>2020-05-22 14:25:29 (GMT)
commit1b0049680b09872f01f714c8dcb1ed3c5c21da25 (patch)
tree0fd0a36788e7ff076e1191b1699eaea37e0baabc /Source/cmCMakeLanguageCommand.h
parent9c70475755751536a780380c2b04fbc493b714b9 (diff)
parent94c1e4fdb35c01ef5ad57ed3284b20d8d7fc3496 (diff)
downloadCMake-1b0049680b09872f01f714c8dcb1ed3c5c21da25.zip
CMake-1b0049680b09872f01f714c8dcb1ed3c5c21da25.tar.gz
CMake-1b0049680b09872f01f714c8dcb1ed3c5c21da25.tar.bz2
Merge topic 'cmake_language-rename-from-cmake_command'
94c1e4fdb3 cmake_language: Rename command from cmake_command Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !4774
Diffstat (limited to 'Source/cmCMakeLanguageCommand.h')
-rw-r--r--Source/cmCMakeLanguageCommand.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Source/cmCMakeLanguageCommand.h b/Source/cmCMakeLanguageCommand.h
new file mode 100644
index 0000000..7306515
--- /dev/null
+++ b/Source/cmCMakeLanguageCommand.h
@@ -0,0 +1,20 @@
+/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
+ file Copyright.txt or https://cmake.org/licensing for details. */
+#ifndef cmCMakeLanguageCommand_h
+#define cmCMakeLanguageCommand_h
+
+#include "cmConfigure.h" // IWYU pragma: keep
+
+#include <vector>
+
+class cmExecutionStatus;
+struct cmListFileArgument;
+
+/**
+ * \brief Calls a scripted or build-in command
+ *
+ */
+bool cmCMakeLanguageCommand(std::vector<cmListFileArgument> const& args,
+ cmExecutionStatus& status);
+
+#endif