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

This commit is contained in:
Gary Talent 2020-04-07 22:04:23 -05:00
parent 19422ced3e
commit d2ec3b8350

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