aboutsummaryrefslogtreecommitdiff
path: root/build2/bin/target
diff options
context:
space:
mode:
Diffstat (limited to 'build2/bin/target')
-rw-r--r--build2/bin/target12
1 files changed, 12 insertions, 0 deletions
diff --git a/build2/bin/target b/build2/bin/target
index 8c32e84..849316e 100644
--- a/build2/bin/target
+++ b/build2/bin/target
@@ -107,6 +107,18 @@ namespace build2
static const target_type static_type;
virtual const target_type& dynamic_type () const {return static_type;}
};
+
+ // Windows import library.
+ //
+ class libi: public file
+ {
+ public:
+ using file::file;
+
+ public:
+ static const target_type static_type;
+ virtual const target_type& dynamic_type () const {return static_type;}
+ };
}
}