diff options
Diffstat (limited to 'tests/path')
-rw-r--r-- | tests/path/buildfile | 4 | ||||
-rw-r--r-- | tests/path/driver.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tests/path/buildfile b/tests/path/buildfile index 3060d6b..4f41a75 100644 --- a/tests/path/buildfile +++ b/tests/path/buildfile @@ -2,6 +2,6 @@ # copyright : Copyright (c) 2014-2017 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -exe{driver}: cxx{driver} ../../butl/lib{butl} +exe{driver}: cxx{driver} ../../libbutl/lib{butl} -include ../../butl/ +include ../../libbutl/ diff --git a/tests/path/driver.cxx b/tests/path/driver.cxx index ec38517..ee62d73 100644 --- a/tests/path/driver.cxx +++ b/tests/path/driver.cxx @@ -6,8 +6,8 @@ #include <iostream> #include <type_traits> -#include <butl/path> -#include <butl/path-io> +#include <libbutl/path.hxx> +#include <libbutl/path-io.hxx> using namespace std; using namespace butl; |