diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-27 15:11:40 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-08-27 15:11:40 +0200 |
commit | fd689eb883655dcb29e505b041cd02fac01f0bac (patch) | |
tree | 0d85ec32d95a1c96eaa7eff28734b900c44dd3ca /build/target | |
parent | 7f2d06258d57e39940e8fa959336da0ea66fe37f (diff) |
Dist module/meta-operation initial implementation
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? |