]> git.tdb.fi Git - builder.git/blobdiff - source/copy.cpp
Inline simple constructors
[builder.git] / source / copy.cpp
index 2d2a7ca9c023c557954e05924d9181f4280dae97..45c5a81fa9ba60533a0471b105a2a26c4d25d2c0 100644 (file)
@@ -1,5 +1,7 @@
+#ifndef _WIN32
 #include <unistd.h>
 #include <sys/stat.h>
+#endif
 #include <msp/fs/dir.h>
 #include <msp/fs/stat.h>
 #include <msp/fs/utils.h>
 using namespace std;
 using namespace Msp;
 
-Copy::Copy(Builder &b):
-       Tool(b, "CP")
-{ }
-
-Target *Copy::create_target(const list<Target *> &sources, const string &arg)
+Target *Copy::create_target(const vector<Target *> &sources, const string &arg)
 {
        FileTarget &file_tgt = dynamic_cast<FileTarget &>(*sources.front());
        InstalledFile *inst = new InstalledFile(builder, *file_tgt.get_package(), file_tgt, arg);
@@ -35,10 +33,6 @@ Task *Copy::run(const Target &target) const
 }
 
 
-Copy::Worker::Worker(const InstalledFile &t):
-       target(t)
-{ }
-
 void Copy::Worker::main()
 {
        const FileTarget &source = target.get_source();
@@ -65,6 +59,7 @@ void Copy::Worker::main()
                return;
        }
 
+#ifndef _WIN32
        // Preserve file permissions
        struct stat st;
        if(stat(src_path.str().c_str(), &st)==0)
@@ -78,6 +73,7 @@ void Copy::Worker::main()
                        FS::unlink(link);
                symlink(relpath.str().c_str(), link.str().c_str());
        }
+#endif
 
        status = Task::SUCCESS;
 }