X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbuildinfo.cpp;h=e2df34c06e3ec91cb56500f97c3bed1b53b23d02;hb=HEAD;hp=36be492ac0724f1757fb56b6b2b5b9a825ff2981;hpb=7567502e17be7704d58ced2f49703fcf71c7ef38;p=builder.git diff --git a/source/buildinfo.cpp b/source/buildinfo.cpp deleted file mode 100644 index 36be492..0000000 --- a/source/buildinfo.cpp +++ /dev/null @@ -1,90 +0,0 @@ -/* $Id$ - -This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include -#include "buildinfo.h" - -using namespace std; -using namespace Msp; - -/** -Adds another BuildInfo to the end of this one. -*/ -void BuildInfo::add(const BuildInfo &bi) -{ - cflags.insert(cflags.end(), bi.cflags.begin(), bi.cflags.end()); - defines.insert(defines.end(), bi.defines.begin(), bi.defines.end()); - incpath.insert(incpath.end(), bi.incpath.begin(), bi.incpath.end()); - ldflags.insert(ldflags.end(), bi.ldflags.begin(), bi.ldflags.end()); - libpath.insert(libpath.end(), bi.libpath.begin(), bi.libpath.end()); - libs.insert(libs.end(), bi.libs.begin(), bi.libs.end()); - warnings.insert(warnings.end(), bi.warnings.begin(), bi.warnings.end()); -} - -/** -Makes sure there are no duplicate entries in the lists. -*/ -void BuildInfo::unique() -{ - unique(cflags); - unique(defines); - unique(incpath); - unique(ldflags); - unique(libpath); - unique(libs); - - for(StringList::iterator i=warnings.begin(); i!=warnings.end(); ++i) - { - bool flag=i->compare(0, 3, "no-"); - - string warn=(flag ? *i : i->substr(3)); - string no_warn="no-"+warn; - - for(StringList::iterator j=i; j!=warnings.end();) - { - if(j!=i && (*j==warn || *j==no_warn)) - { - flag=(*j==warn); - j=warnings.erase(j); - } - else - ++j; - } - - *i=(flag ? warn : no_warn); - } -} - -/** -Removes any duplicate entries from a list, leaving only the first one. The -order of other elements is preserved. O(n²) efficiency. -*/ -void BuildInfo::unique(StringList &l) -{ - for(StringList::iterator i=l.begin(); i!=l.end(); ++i) - for(StringList::iterator j=i; j!=l.end();) - { - if(j!=i && *j==*i) - j=l.erase(j); - else - ++j; - } -} - -BuildInfo::Loader::Loader(BuildInfo &bi): - binfo(bi) -{ - add("cflag", &Loader::cflag); - add("incpath", &Loader::incpath); - add("define", &Loader::define); - add("ldflag", &Loader::ldflag); - add("libpath", &Loader::libpath); - add("library", &Loader::library); - add("warning", &Loader::warning); -} - -