diff options
Diffstat (limited to 'build/target')
-rw-r--r-- | build/target | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/build/target b/build/target index 2c05ea1..f2b093e 100644 --- a/build/target +++ b/build/target @@ -925,6 +925,16 @@ namespace build static const target_type static_type; }; + class buildfile: public file + { + public: + using file::file; + + public: + virtual const target_type& type () const {return static_type;} + static const target_type static_type; + }; + // Common documentation file targets. // // @@ Maybe these should be in the built-in doc module? |