From 652b603ec6a04433132f5922d9d621fcb345e676 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Thu, 28 Feb 2019 23:10:50 -0600 Subject: [PATCH] [ox/fs] Fix FS to use stdc++fs when building with GNU --- deps/ox/src/ox/fs/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deps/ox/src/ox/fs/CMakeLists.txt b/deps/ox/src/ox/fs/CMakeLists.txt index c9f391e0..d879fae1 100644 --- a/deps/ox/src/ox/fs/CMakeLists.txt +++ b/deps/ox/src/ox/fs/CMakeLists.txt @@ -12,7 +12,8 @@ add_library( if(OX_USE_STDLIB) target_link_libraries( OxFS PUBLIC - c++fs + $<$:c++fs> + $<$:stdc++fs> ) endif()