summaryrefslogtreecommitdiff
path: root/Source/cmCPluginAPI.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r--Source/cmCPluginAPI.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx
index 90be2761f2..b8c562f552 100644
--- a/Source/cmCPluginAPI.cxx
+++ b/Source/cmCPluginAPI.cxx
@@ -536,6 +536,12 @@ void cmRemoveFile(const char *name)
cmSystemTools::RemoveFile(name);
}
+void cmDisplayStatus(void *arg, const char* message)
+{
+ cmMakefile *mf = static_cast<cmMakefile *>(arg);
+ return mf->DisplayStatus(message, -1);
+}
+
void cmFree(void *data)
{
free(data);
@@ -550,6 +556,7 @@ cmCAPI cmStaticCAPI =
cmFreeArguments,
cmSetClientData,
cmSetError,
+ cmDisplayStatus,
cmAddCacheDefinition,
cmAddCustomCommand,
cmAddDefineFlag,