Don't add underscore prefix to amd64 symbols
[reactos.git] / reactos / tools / rbuild / cdfile.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
25 string
26 CDFile::ReplaceVariable ( const string& name,
27 const string& value,
28 string path )
29 {
30 size_t i = path.find ( name );
31 if ( i != string::npos )
32 return path.replace ( i, name.length (), value );
33 else
34 return path;
35 }
36
37 CDFile::~CDFile ()
38 {
39 delete source;
40 delete target;
41 }
42
43 CDFile::CDFile ( const Project& project,
44 const XMLElement& cdfileNode,
45 const string& path )
46 : XmlNode ( project, cdfileNode )
47 {
48 const XMLAttribute* att = cdfileNode.GetAttribute ( "installbase", false );
49 string target_relative_directory;
50 if ( att != NULL )
51 target_relative_directory = ReplaceVariable ( "$(CDOUTPUT)", Environment::GetCdOutputPath (), att->value );
52 else
53 target_relative_directory = "";
54
55 const XMLAttribute* nameoncd = cdfileNode.GetAttribute ( "nameoncd", false );
56
57 source = new FileLocation ( SourceDirectory,
58 path,
59 cdfileNode.value,
60 &cdfileNode );
61 target = new FileLocation ( OutputDirectory,
62 target_relative_directory,
63 nameoncd ? nameoncd->value : cdfileNode.value,
64 &cdfileNode );
65 }