]> git.tdb.fi Git - builder.git/blobdiff - source/installcomponent.cpp
Replace basic for loops with range-based loops or algorithms
[builder.git] / source / installcomponent.cpp
index ed3c191cd7769a1cb95ca77d5f2fb99adab9a41d..319053f0ba42bbfbbf7c27fc0a112a63b2d6ac75 100644 (file)
@@ -5,6 +5,7 @@
 #include "tool.h"
 
 using namespace std;
+using namespace Msp;
 
 InstallComponent::InstallComponent(SourcePackage &p, const string &n):
        Component(p, n)
@@ -16,12 +17,11 @@ void InstallComponent::create_targets() const
        Target *inst = builder.get_build_graph().get_target("install");
        Tool &copy = builder.get_toolchain().get_tool("CP");
 
-       SourceList source_filenames = collect_source_files();
-       for(SourceList::const_iterator i=source_filenames.begin(); i!=source_filenames.end(); ++i)
+       for(const FS::Path &s: collect_source_files())
        {
-               Target *tgt = builder.get_vfs().get_target(*i);
+               Target *tgt = builder.get_vfs().get_target(s);
                if(!tgt)
-                       tgt = new File(builder, package, *i);
+                       tgt = new File(builder, package, s);
                inst->add_dependency(*copy.create_target(*tgt, name));
        }
 }