aboutsummaryrefslogtreecommitdiff
path: root/tests/mventry/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/mventry/driver.cxx')
-rw-r--r--tests/mventry/driver.cxx22
1 files changed, 19 insertions, 3 deletions
diff --git a/tests/mventry/driver.cxx b/tests/mventry/driver.cxx
index 5639c2b..eab2ce3 100644
--- a/tests/mventry/driver.cxx
+++ b/tests/mventry/driver.cxx
@@ -2,12 +2,28 @@
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
+#include <cassert>
+
+#ifndef __cpp_lib_modules
#include <iostream>
#include <system_error>
+#endif
+
+// Other includes.
-#include <libbutl/path.hxx>
-#include <libbutl/utility.hxx> // operator<<(ostream, exception)
-#include <libbutl/filesystem.hxx>
+#ifdef __cpp_modules
+#ifdef __cpp_lib_modules
+import std.core;
+import std.io;
+#endif
+import butl.path;
+import butl.utility; // operator<<(ostream, exception)
+import butl.filesystem;
+#else
+#include <libbutl/path.mxx>
+#include <libbutl/utility.mxx>
+#include <libbutl/filesystem.mxx>
+#endif
using namespace std;
using namespace butl;