From ad720fabd468974e3909f62a0f4e4e3cf0d03aef Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 15 Apr 2015 11:59:58 +0200 Subject: Initial library support --- build/native | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'build/native') diff --git a/build/native b/build/native index 6107705..88f340d 100644 --- a/build/native +++ b/build/native @@ -9,6 +9,16 @@ namespace build { + class obj: public file + { + public: + using file::file; + + public: + virtual const target_type& type () const {return static_type;} + static const target_type static_type; + }; + class exe: public file { public: @@ -19,7 +29,7 @@ namespace build static const target_type static_type; }; - class obj: public file + class lib: public file { public: using file::file; -- cgit v1.1