diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-08-26 14:52:04 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-08-26 14:52:04 (GMT) |
commit | d99454cba4dc5d2d1e51dc2cc5889cb32e468b6a (patch) | |
tree | 0069582d55c42b45aa009f0252ffdae339067561 /Source/cmCPluginAPI.cxx | |
parent | c728b6c96339d4aeee46275db3a60d7220c4a9ee (diff) | |
download | CMake-d99454cba4dc5d2d1e51dc2cc5889cb32e468b6a.zip CMake-d99454cba4dc5d2d1e51dc2cc5889cb32e468b6a.tar.gz CMake-d99454cba4dc5d2d1e51dc2cc5889cb32e468b6a.tar.bz2 |
now uses stubs
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r-- | Source/cmCPluginAPI.cxx | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx index dc5c9fd..c734028 100644 --- a/Source/cmCPluginAPI.cxx +++ b/Source/cmCPluginAPI.cxx @@ -451,3 +451,53 @@ void cmRemoveFile(const char *name) cmSystemTools::RemoveFile(name); } +cmCAPI cmStaticCAPI = +{ + cmGetClientData, + cmGetTotalArgumentSize, + cmFreeArguments, + cmSetClientData, + cmAddCacheDefinition, + cmAddCustomCommand, + cmAddDefineFlag, + cmAddDefinition, + cmAddExecutable, + cmAddLibrary, + cmAddLinkDirectoryForTarget, + cmAddLinkLibraryForTarget, + cmAddUtilityCommand, + cmCommandExists, + cmExecuteCommand, + cmExpandSourceListArguments, + cmExpandVariablesInString, + cmGetCacheMajorVersion, + cmGetCacheMinorVersion, + cmGetCurrentDirectory, + cmGetCurrentOutputDirectory, + cmGetDefinition, + cmGetHomeDirectory, + cmGetHomeOutputDirectory, + cmGetMajorVersion, + cmGetMinorVersion, + cmGetProjectName, + cmGetStartDirectory, + cmGetStartOutputDirectory, + cmIsOn, + + cmAddSource, + cmCreateSourceFile, + cmGetSource, + cmSourceFileAddDepend, + cmSourceFileGetProperty, + cmSourceFileGetPropertyAsBool, + cmSourceFileGetSourceName, + cmSourceFileSetName, + cmSourceFileSetName2, + cmSourceFileSetProperty, + + cmCapitalized, + cmCopyFileIfDifferent, + cmGetFilenameWithoutExtension, + cmRemoveFile, +}; + |