]> git.tdb.fi Git - builder.git/blobdiff - source/executable.h
Force shared linking on Android
[builder.git] / source / executable.h
index 0dc4fc5223b0f671af15901397af594a63dc6679..967aaf97c7ec0c8044eaf0c48965122029732eb5 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of builder
-Copyright © 2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef EXECUTABLE_H_
 #define EXECUTABLE_H_
 
@@ -13,7 +6,12 @@ Distributed under the LGPL
 class Executable: public Binary
 {
 public:
+       Executable(Builder &, const Msp::FS::Path &);
        Executable(Builder &, const Component &, const std::list<ObjectFile *> &);
+private:
+       static std::string generate_filename(const Component &);
+
+public:
        virtual const char *get_type() const { return "Executable"; }
 };