X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcsourcefile.cpp;h=0034ebd0e564870c6ed101835f52cd130ef42506;hb=HEAD;hp=d3cb807a781cc1f35cefafa8ece08079ee126f94;hpb=519f2006e8b33e9b14fdc985766ab4e4e869544b;p=builder.git diff --git a/source/csourcefile.cpp b/source/csourcefile.cpp deleted file mode 100644 index d3cb807..0000000 --- a/source/csourcefile.cpp +++ /dev/null @@ -1,62 +0,0 @@ -#include -#include -#include -#include -#include "builder.h" -#include "component.h" -#include "csourcefile.h" -#include "sourcepackage.h" - -using namespace std; -using namespace Msp; - -CSourceFile::CSourceFile(Builder &b, const FS::Path &p): - SourceFile(b, 0, p) -{ } - -CSourceFile::CSourceFile(Builder &b, const Component &c, const FS::Path &p): - SourceFile(b, &c, p) -{ - string ext = FS::extpart(FS::basename(path)); - if(ext==".h" || ext==".H" || ext==".hpp") - install_location = "include/"+comp->get_name(); -} - -void CSourceFile::find_depends() -{ - if(!comp || !mtime) - return; - - const SourcePackage &spkg = comp->get_package(); - string relname = FS::relative(path, spkg.get_source()).str(); - - DependencyCache &deps_cache = spkg.get_deps_cache(); - if(mtime]"); - - string line; - while(in.getline(line)) - if(RegMatch match = r_include.match(line)) - includes.push_back(match[1].str); - - deps_cache.set_deps(relname, includes); - } - - const StringList &incpath = comp->get_build_info().incpath; - StringList local_incpath = incpath; - local_incpath.push_front(FS::dirname(path).str()); - - for(list::iterator i=includes.begin(); i!=includes.end(); ++i) - { - Target *hdr = builder.get_vfs().find_header(i->substr(1), ((*i)[0]=='"' ? local_incpath : incpath)); - if(hdr) - add_depend(hdr); - } -}