2001-04-11 22:59:02 +04:00
|
|
|
/*=========================================================================
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
2001-04-11 22:59:02 +04:00
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
2002-10-24 02:03:27 +04:00
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
2001-04-11 22:59:02 +04:00
|
|
|
|
2002-01-21 23:30:43 +03:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
2001-04-11 22:59:02 +04:00
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#ifndef cmLibrarysCommand_h
|
|
|
|
#define cmLibrarysCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
/** \class cmLibrarysCommand
|
|
|
|
* \brief Defines a list of executables to build.
|
|
|
|
*
|
|
|
|
* cmLibrarysCommand defines a list of executable (i.e., test)
|
|
|
|
* programs to create.
|
|
|
|
*/
|
|
|
|
class cmAddLibraryCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* This is a virtual constructor for the command.
|
|
|
|
*/
|
|
|
|
virtual cmCommand* Clone()
|
|
|
|
{
|
|
|
|
return new cmAddLibraryCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the CMakeLists.txt file.
|
|
|
|
*/
|
2001-09-20 23:08:30 +04:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args);
|
2001-04-11 22:59:02 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
|
|
|
virtual const char* GetName() { return "ADD_LIBRARY";}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetTerseDocumentation()
|
|
|
|
{
|
2005-11-16 18:16:57 +03:00
|
|
|
return "Add a library to the project using the specified source files.";
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* More documentation.
|
|
|
|
*/
|
|
|
|
virtual const char* GetFullDocumentation()
|
|
|
|
{
|
|
|
|
return
|
2003-02-15 02:47:16 +03:00
|
|
|
" ADD_LIBRARY(libname [SHARED | STATIC | MODULE]\n"
|
|
|
|
" source1 source2 ... sourceN)\n"
|
|
|
|
"Adds a library target. SHARED, STATIC or MODULE keywords are used "
|
|
|
|
"to set the library type. If the keyword MODULE appears, the library "
|
|
|
|
"type is set to MH_BUNDLE on systems which use dyld. On systems "
|
|
|
|
"without dyld, MODULE is treated like SHARED. If no keywords appear "
|
|
|
|
" as the second argument, the type defaults to the current value of "
|
|
|
|
"BUILD_SHARED_LIBS. If this variable is not set, the type defaults "
|
|
|
|
"to STATIC.";
|
2001-04-11 22:59:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cmTypeMacro(cmAddLibraryCommand, cmCommand);
|
2002-05-02 00:33:27 +04:00
|
|
|
|
|
|
|
private:
|
2006-03-15 19:02:08 +03:00
|
|
|
std::string LibName;
|
2001-04-11 22:59:02 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|