summaryrefslogtreecommitdiff
path: root/Tests/LoadCommandOneConfig
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-09-23 14:57:41 -0400
committerKen Martin <ken.martin@kitware.com>2002-09-23 14:57:41 -0400
commit903796a76af1f3ee54401a5250b192cc868acfa8 (patch)
tree2d6d534a5f91528eeeb0ac81ac66c1e14b0bb385 /Tests/LoadCommandOneConfig
parentbafeb6974236c49f0c520cb7f49719312a665385 (diff)
downloadcmake-903796a76af1f3ee54401a5250b192cc868acfa8.tar.gz
cleanup
Diffstat (limited to 'Tests/LoadCommandOneConfig')
-rw-r--r--Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c b/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c
index b10d599046..a31e14aed0 100644
--- a/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c
+++ b/Tests/LoadCommandOneConfig/CMakeCommands/cmTestCommand.c
@@ -54,11 +54,6 @@ void Destructor(void *inf)
free(cdata);
}
-CM_PLUGIN_EXPORT const char *cmGetName()
-{
- return "CMAKE_TEST_COMMAND";
-}
-
#ifdef MUCHO_MUDSLIDE
void CM_PLUGIN_EXPORT cmInitializeCommand(cmLoadedCommandInfo *info)
{
@@ -66,6 +61,7 @@ void CM_PLUGIN_EXPORT cmInitializeCommand(cmLoadedCommandInfo *info)
info->FinalPass = FinalPass;
info->Destructor = Destructor;
info->m_Inherited = 0;
+ info->Name = "CMAKE_TEST_COMMAND";
}
#endif