]> git.tdb.fi Git - builder.git/blobdiff - source/compile.h
Don't throw up if a package doesn't install anything
[builder.git] / source / compile.h
index 42ae95c1f45c125ade30dc9bc92e730ab968efd7..fd6ae8b9adaa78f026f955a8988ed9822eac31b7 100644 (file)
@@ -5,15 +5,15 @@
 #include "externalaction.h"
 
 class Component;
+class ObjectFile;
 
+/**
+Compiles a source file into an object file.
+*/
 class Compile: public ExternalAction
 {
 public:
-       Compile(Builder &, const Msp::Path::Path &, const Msp::Path::Path &, const Component &);
-private:
-       Msp::Path::Path source;
-       Msp::Path::Path object;
-       const Component ∁
+       Compile(Builder &, const ObjectFile &);
 };
 
 #endif