X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fsourcefile.cpp;h=c4eea79eee84fa2b4c76d18c5f8e3619746513d9;hb=74266a6e650f019063cdcd1c9a7bd26d8f99041b;hp=ea76efd28a6fd6435e6d9c2a4f74c50a40c83a31;hpb=0d80cabf649b931b26e7055385156c75a7385d35;p=builder.git diff --git a/source/sourcefile.cpp b/source/sourcefile.cpp index ea76efd..c4eea79 100644 --- a/source/sourcefile.cpp +++ b/source/sourcefile.cpp @@ -14,6 +14,10 @@ SourceFile::SourceFile(Builder &b, const Component *c, const string &n): comp(c) { } +/** +Parses include directives from the file and looks up the appropriate targets +from Builder. +*/ void SourceFile::find_depends() { ifstream in(name.c_str()); @@ -33,4 +37,6 @@ void SourceFile::find_depends() if(hdr) add_depend(hdr); } + + deps_ready=true; }