X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcomponent.cpp;h=dcbaf373e19c0c16360fbfa468988575767fd5ff;hb=242c55b17e6608b29a77ca17a5b677e202a3ca90;hp=26a0ab4b7246d5c24eccd6f26c494fa0fea54335;hpb=77461a8c0e2b5686b04cf15f3a9333b215813992;p=builder.git diff --git a/source/component.cpp b/source/component.cpp index 26a0ab4..dcbaf37 100644 --- a/source/component.cpp +++ b/source/component.cpp @@ -1,7 +1,7 @@ /* $Id$ This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2006-2009 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -33,9 +33,6 @@ Component::Component(SourcePackage &p, Type t, const string &n): deflt(true) { } -/** -Prepares the build information for building. -*/ void Component::create_build_info() { build_info.add(pkg.get_build_info()); @@ -81,9 +78,6 @@ void Component::create_build_info() build_info.unique(); } -/** -Creates all targets needed for building this component. -*/ void Component::create_targets() const { Builder &builder=pkg.get_builder(); @@ -121,7 +115,7 @@ void Component::create_targets() const if(build_exe) { - Executable *exe=0; + Executable *exe=0; StaticLibrary *slib=0; if(type==LIBRARY) { @@ -155,9 +149,6 @@ void Component::create_targets() const inst_tgt->add_depend(new Install(builder, pkg, **i)); } -/** -Collects all files belonging to the component. -*/ PathList Component::collect_source_files() const { PathList files;