aboutsummaryrefslogtreecommitdiffhomepage
path: root/views/version.txt
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2017-08-08 12:10:22 -0400
committerRalph Amissah <ralph@amissah.com>2019-04-10 15:14:14 -0400
commit30865cf1a75a144629c6029ac55fbc744e330adf (patch)
treedb3da8732b0a17045aa84985743873e9d8362123 /views/version.txt
parent0.18.0 rename meta from ao (considered adr) (diff)
maker.org makefile supported compilers, make all_builds_debug
- dmd ldc2 gdc
Diffstat (limited to 'views/version.txt')
-rw-r--r--views/version.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/views/version.txt b/views/version.txt
index 07683c2..db9b02e 100644
--- a/views/version.txt
+++ b/views/version.txt
@@ -5,3 +5,13 @@ struct Version {
int patch;
}
enum ver = Version(0, 18, 0);
+version (Posix) {
+ version (DigitalMars) {
+ } else version (LDC) {
+ } else version (GNU) {
+ } else {
+ static assert (0, "Unsupported D compiler");
+ }
+} else {
+ static assert (0, "Unsupported D compiler");
+}