diff --git a/deps/ox/src/ox/fs/CMakeLists.txt b/deps/ox/src/ox/fs/CMakeLists.txt index 9bed1984..9c912535 100644 --- a/deps/ox/src/ox/fs/CMakeLists.txt +++ b/deps/ox/src/ox/fs/CMakeLists.txt @@ -10,11 +10,12 @@ add_library( ) if(NOT OX_BARE_METAL) - target_link_libraries( - OxFS PUBLIC - $<$:c++fs> - $<$:stdc++fs> - ) + if(NOT APPLE) + target_link_libraries( + OxFS PUBLIC + stdc++fs + ) + endif() set_property( TARGET OxFS