[ox/fs] Remove explicit linking of C++ standard file system library

(synced from d2ec3b8350)
This commit is contained in:
2020-04-07 22:04:23 -05:00
parent fdf3839205
commit 724810542e
+6 -5
View File
@@ -10,11 +10,12 @@ add_library(
)
if(NOT OX_BARE_METAL)
target_link_libraries(
OxFS PUBLIC
$<$<CXX_COMPILER_ID:Clang>:c++fs>
$<$<CXX_COMPILER_ID:GNU>:stdc++fs>
)
if(NOT APPLE)
target_link_libraries(
OxFS PUBLIC
stdc++fs
)
endif()
set_property(
TARGET
OxFS