summaryrefslogtreecommitdiffstats
path: root/Source/cmBuildSharedLibrariesCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-07-02 19:58:01 (GMT)
committerBrad King <brad.king@kitware.com>2001-07-02 19:58:01 (GMT)
commit6307ffbb650a16f498cb7ba393b846eef4b92e09 (patch)
tree4985642be8d2c6a00451d27fc4a50742e7521c4a /Source/cmBuildSharedLibrariesCommand.h
parente693d47253157c9372aeb7c2edbecef8d1fb6225 (diff)
downloadCMake-6307ffbb650a16f498cb7ba393b846eef4b92e09.zip
CMake-6307ffbb650a16f498cb7ba393b846eef4b92e09.tar.gz
CMake-6307ffbb650a16f498cb7ba393b846eef4b92e09.tar.bz2
ENH: Removed deprecated command completely.
Diffstat (limited to 'Source/cmBuildSharedLibrariesCommand.h')
-rw-r--r--Source/cmBuildSharedLibrariesCommand.h64
1 files changed, 0 insertions, 64 deletions
diff --git a/Source/cmBuildSharedLibrariesCommand.h b/Source/cmBuildSharedLibrariesCommand.h
deleted file mode 100644
index 829a345..0000000
--- a/Source/cmBuildSharedLibrariesCommand.h
+++ /dev/null
@@ -1,64 +0,0 @@
-#ifndef cmBuildSharedLibrariesCommand_h
-#define cmBuildSharedLibrariesCommand_h
-
-#include "cmStandardIncludes.h"
-#include "cmCommand.h"
-
-/** \class cmBuildSharedLibrariesCommand
- * \brief Define a command that searches for an include file.
- *
- * cmBuildSharedLibrariesCommand is used to define a CMake variable include
- * path location by specifying a file and list of directories.
- */
-class cmBuildSharedLibrariesCommand : public cmCommand
-{
-public:
- /**
- * This is a virtual constructor for the command.
- */
- virtual cmCommand* Clone()
- {
- return new cmBuildSharedLibrariesCommand;
- }
-
- /**
- * This is called when the command is first encountered in
- * the CMakeLists.txt file.
- */
- virtual bool InitialPass(std::vector<std::string>& args);
-
- /**
- * This determines if the command gets propagated down
- * to makefiles located in subdirectories.
- */
- virtual bool IsInherited()
- {return true;}
-
- /**
- * The name of the command as specified in CMakeList.txt.
- */
- virtual const char* GetName() { return "BUILD_SHARED_LIBRARIES";}
-
- /**
- * Succinct documentation.
- */
- virtual const char* GetTerseDocumentation()
- {
- return "Build shared libraries instead of static";
- }
-
- /**
- * More documentation.
- */
- virtual const char* GetFullDocumentation()
- {
- return
- "BUILD_SHARED_LIBRARIES()";
- }
-
-private:
-};
-
-
-
-#endif