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

(synced from 652b603ec6)
This commit is contained in:
2019-02-28 23:10:50 -06:00
parent 98c6b0c370
commit 244dbb705c
+2 -1
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()