]> git.tdb.fi Git - builder.git/blobdiff - source/copy.h
Force shared linking on Android
[builder.git] / source / copy.h
index 6150fadfefa660c287d8f2a850da098489f51893..dedd0f57a0e3aa41607d67b0f6d16c10c6fa799a 100644 (file)
@@ -6,10 +6,10 @@
 #include "internaltask.h"
 #include "tool.h"
 
-class Install;
+class InstalledFile;
 
 /**
-Copies a file to another place.  Used by the Install target.
+Copies a file to another place.  Used by the InstalledFile target.
 */
 class Copy: public Tool
 {
@@ -20,10 +20,10 @@ private:
        class Worker: public InternalTask::Worker
        {
        private:
-               const Install ⌖
+               const InstalledFile ⌖
 
        public:
-               Worker(const Install &);
+               Worker(const InstalledFile &);
        private:
                virtual void main();
        };
@@ -31,7 +31,7 @@ private:
 public:
        Copy(Builder &);
 
-       virtual Target *create_target(const std::list<Target *> &, const std::string &) const;
+       virtual Target *create_target(const std::list<Target *> &, const std::string &);
        virtual Task *run(const Target &) const;
 };