diff --git a/buildkit/re.yml b/buildkit/re.yml index 5e44449..5c12bda 100644 --- a/buildkit/re.yml +++ b/buildkit/re.yml @@ -9,7 +9,6 @@ deps: - vcpkg:boost-exception - vcpkg:boost-stacktrace - vcpkg:boost-xpressive - - vcpkg:ghc-filesystem - vcpkg:yaml-cpp - vcpkg:magic-enum - github:osdeverr/fmt @re-9.1.0-1 diff --git a/buildkit/re/fs.h b/buildkit/re/fs.h index ec6785e..4babf84 100644 --- a/buildkit/re/fs.h +++ b/buildkit/re/fs.h @@ -5,13 +5,8 @@ namespace re { - namespace fs = std::filesystem; + namespace fs = std::filesystem; } #else -#include - -namespace re -{ - namespace fs = ghc::filesystem; -} +#error Your compiler does not fully support C++17! Re requires the header to be present. #endif diff --git a/buildkit/re/target.cpp b/buildkit/re/target.cpp index d370e45..3663379 100644 --- a/buildkit/re/target.cpp +++ b/buildkit/re/target.cpp @@ -1,8 +1,10 @@ #include "target.h" -#include #include +#include +#include + #include #include