aboutsummaryrefslogtreecommitdiff
path: root/build/native
diff options
context:
space:
mode:
Diffstat (limited to 'build/native')
-rw-r--r--build/native31
1 files changed, 31 insertions, 0 deletions
diff --git a/build/native b/build/native
new file mode 100644
index 0000000..29ad653
--- /dev/null
+++ b/build/native
@@ -0,0 +1,31 @@
+// file : build/native -*- C++ -*-
+// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BUILD_NATIVE
+#define BUILD_NATIVE
+
+#include <build/target>
+
+namespace build
+{
+ class exe: public file
+ {
+ public:
+ using file::file;
+
+ public: virtual const type_info& type_id () const {return ti_;}
+ protected: static const type_info ti_;
+ };
+
+ class obj: public file
+ {
+ public:
+ using file::file;
+
+ public: virtual const type_info& type_id () const {return ti_;}
+ protected: static const type_info ti_;
+ };
+}
+
+#endif // BUILD_NATIVE