summaryrefslogtreecommitdiffstats
path: root/Source/cmAddLibraryCommand.cxx
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-06-22 13:58:10 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-06-22 13:58:10 (GMT)
commitf7d4f27c2a378317fa382fc1813ba7cb31cbd839 (patch)
treeecdf2d72c79c335abe372f892c2d560b1b2b5758 /Source/cmAddLibraryCommand.cxx
parent1d9889c5d34d83b269697c0b09e840bf83066e6f (diff)
downloadCMake-f7d4f27c2a378317fa382fc1813ba7cb31cbd839.zip
CMake-f7d4f27c2a378317fa382fc1813ba7cb31cbd839.tar.gz
CMake-f7d4f27c2a378317fa382fc1813ba7cb31cbd839.tar.bz2
ENH: add IMPORT keyword to ADD_LIBRARY, dependencies are not yet working
STYLE: fix line lengths and indentation, use enum as argument to AddLibrary() instead of int (which was initialized from a bool in some cases) Alex
Diffstat (limited to 'Source/cmAddLibraryCommand.cxx')
-rw-r--r--Source/cmAddLibraryCommand.cxx53
1 files changed, 34 insertions, 19 deletions
diff --git a/Source/cmAddLibraryCommand.cxx b/Source/cmAddLibraryCommand.cxx
index bdf59ad..cc55f80 100644
--- a/Source/cmAddLibraryCommand.cxx
+++ b/Source/cmAddLibraryCommand.cxx
@@ -26,62 +26,62 @@ bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args)
}
// Library type defaults to value of BUILD_SHARED_LIBS, if it exists,
// otherwise it defaults to static library.
- int shared =
- !cmSystemTools::IsOff(this->Makefile->GetDefinition("BUILD_SHARED_LIBS"));
+ cmTarget::TargetType type = cmTarget::SHARED_LIBRARY;
+ if (cmSystemTools::IsOff(this->Makefile->GetDefinition("BUILD_SHARED_LIBS")))
+ {
+ type = cmTarget::STATIC_LIBRARY;
+ }
bool excludeFromAll = false;
+ bool importTarget = false;
std::vector<std::string>::const_iterator s = args.begin();
- this->LibName = *s;
+ std::string libName = *s;
++s;
// If the second argument is "SHARED" or "STATIC", then it controls
// the type of library. Otherwise, it is treated as a source or
- // source list name. There man be two keyword arguments, check for them
+ // source list name. There may be two keyword arguments, check for them
while ( s != args.end() )
{
std::string libType = *s;
if(libType == "STATIC")
{
++s;
- shared = 0;
+ type = cmTarget::STATIC_LIBRARY;
}
else if(libType == "SHARED")
{
++s;
- shared = 1;
+ type = cmTarget::SHARED_LIBRARY;
}
else if(libType == "MODULE")
{
++s;
- shared = 2;
+ type = cmTarget::MODULE_LIBRARY;
}
else if(*s == "EXCLUDE_FROM_ALL")
{
++s;
excludeFromAll = true;
}
+ else if(*s == "IMPORT")
+ {
+ ++s;
+ importTarget = true;
+ }
else
{
break;
}
}
- if (s == args.end())
- {
- std::string msg = "You have called ADD_LIBRARY for library ";
- msg += args[0];
- msg += " without any source files. This typically indicates a problem ";
- msg += "with your CMakeLists.txt file";
- cmSystemTools::Message(msg.c_str() ,"Warning");
- }
-
/* ideally we should check whether for the linker language of the target
CMAKE_${LANG}_CREATE_SHARED_LIBRARY is defined and if not default to
STATIC. But at this point we know only the name of the target, but not
yet its linker language. */
- if ((shared != 0) &&
+ if ((type != cmTarget::STATIC_LIBRARY) &&
(this->Makefile->IsOn("CMAKE_TARGET_SUPPORTS_ONLY_STATIC_LIBS")))
{
std::string msg = "ADD_LIBRARY for library ";
@@ -90,7 +90,22 @@ bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args)
"platform supports only STATIC libraries. Building it STATIC instead. "
"This may lead to problems.";
cmSystemTools::Message(msg.c_str() ,"Warning");
- shared = 0;
+ type = cmTarget::STATIC_LIBRARY;
+ }
+
+ if (importTarget)
+ {
+ this->Makefile->AddNewTarget(type, libName.c_str(), true);
+ return true;
+ }
+
+ if (s == args.end())
+ {
+ std::string msg = "You have called ADD_LIBRARY for library ";
+ msg += args[0];
+ msg += " without any source files. This typically indicates a problem ";
+ msg += "with your CMakeLists.txt file";
+ cmSystemTools::Message(msg.c_str() ,"Warning");
}
std::vector<std::string> srclists;
@@ -100,7 +115,7 @@ bool cmAddLibraryCommand::InitialPass(std::vector<std::string> const& args)
++s;
}
- this->Makefile->AddLibrary(this->LibName.c_str(), shared, srclists,
+ this->Makefile->AddLibrary(libName.c_str(), type, srclists,
excludeFromAll);
return true;