mirror of
https://github.com/reactos/reactos.git
synced 2026-09-13 21:29:18 +08:00
initial code to step through tree looking for modules, and calculating their relative paths, for now just print out our findings and clean up.
svn path=/branches/xmlbuildsystem/; revision=12777
This commit is contained in:
@@ -1,5 +1,13 @@
|
||||
#include "rbuild.h"
|
||||
|
||||
Module::Module(XMLElement moduleNode)
|
||||
{
|
||||
using std::string;
|
||||
using std::vector;
|
||||
|
||||
Module::Module ( const XMLElement& moduleNode,
|
||||
const string& moduleName,
|
||||
const string& modulePath)
|
||||
: node(moduleNode),
|
||||
name(moduleName),
|
||||
path(modulePath)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user