* Bring back rbuild build to be used until bug 6372 is fixed.
[reactos.git] / tools / rbuild / compilerflag.cpp
1 /*
2 * Copyright (C) 2005 Casper S. Hornstrup
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18 #include "pch.h"
19 #include <assert.h>
20
21 #include "rbuild.h"
22
23 using std::string;
24 using std::vector;
25
26 CompilerFlag::CompilerFlag ( const Project& project_,
27 const XMLElement& compilerFlagNode )
28 : project(project_),
29 module(NULL),
30 node(compilerFlagNode)
31 {
32 Initialize();
33 }
34
35 CompilerFlag::CompilerFlag ( const Project& project_,
36 const Module* module_,
37 const XMLElement& compilerFlagNode )
38 : project(project_),
39 module(module_),
40 node(compilerFlagNode)
41 {
42 Initialize();
43 }
44
45 CompilerFlag::~CompilerFlag ()
46 {
47 }
48
49 void
50 CompilerFlag::Initialize ()
51 {
52 if (node.value.size () == 0)
53 {
54 throw XMLInvalidBuildFileException (
55 node.location,
56 "<compilerflag> is empty." );
57 }
58
59 flag = node.value;
60
61 ParseCompilers ( node, "cc,cxx" );
62 }
63
64 void
65 CompilerFlag::ProcessXML ()
66 {
67 }