]> git.tdb.fi Git - builder.git/blob - source/sourcefile.cpp
Add command line options (not all of them work yet)
[builder.git] / source / sourcefile.cpp
1 #include <fstream>
2 #include <msp/regex++/regex++.h>
3 #include "builder.h"
4 #include "component.h"
5 #include "sourcefile.h"
6
7 using namespace std;
8 using namespace Msp;
9
10 #include <iostream>
11
12 SourceFile::SourceFile(Builder &b, const Component *c, const string &n):
13         Target(b, c?&c->get_package():0, n),
14         comp(c)
15 { }
16
17 void SourceFile::find_depends()
18 {
19         ifstream in(name.c_str());
20         if(!in) return;
21
22         Regex r_include("^[ \t]*#include[ \t]+([\"<].*)[\">]");
23
24         string line;
25         while(getline(in, line))
26                 if(RegMatch match=r_include.match(line))
27                         includes.push_back(match[1].str());
28
29         string path=name.substr(0, name.rfind('/'));
30         for(list<string>::iterator i=includes.begin(); i!=includes.end(); ++i)
31         {
32                 Target *hdr=builder.get_header(*i, path, comp->get_build_info().incpath);
33                 if(hdr)
34                         add_depend(hdr);
35         }
36 }