X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Flib%2Fexecutable.cpp;fp=source%2Flib%2Fexecutable.cpp;h=aa0d8fba333476b8f6c88f96465a8821d2a12710;hb=c8e829c219c65ff8e93b6c7b66212ff0876441c5;hp=0000000000000000000000000000000000000000;hpb=e2c9c3fffcc61a0c102ccf6a7924e2de709092ad;p=builder.git diff --git a/source/lib/executable.cpp b/source/lib/executable.cpp new file mode 100644 index 0000000..aa0d8fb --- /dev/null +++ b/source/lib/executable.cpp @@ -0,0 +1,13 @@ +#include "builder.h" +#include "component.h" +#include "executable.h" +#include "sourcepackage.h" + +using namespace std; +using namespace Msp; + +Executable::Executable(Builder &b, const Component &c, const vector &objs): + Binary(b, c, b.get_current_arch().create_filename(c.get_name()), objs) +{ + install_location = "bin"; +}