[ox/fs] Fix FS to use stdc++fs when building with GNU

This commit is contained in:
Gary Talent 2019-02-28 23:10:50 -06:00
parent ae260e6479
commit 652b603ec6

View File

@ -12,7 +12,8 @@ add_library(
if(OX_USE_STDLIB)
target_link_libraries(
OxFS PUBLIC
c++fs
$<$<CXX_COMPILER_ID:Clang>:c++fs>
$<$<CXX_COMPILER_ID:GNU>:stdc++fs>
)
endif()