mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
Don't specify standard library on macOS
libc++ is already the default and GCC can't even be used so there's no circumstance where we'd need to explicitly tell Clang to use libc++. I confirmed that even with this removed, libc++ headers are still being used and found.
This commit is contained in:
parent
932309f238
commit
429bde6648
@ -20,13 +20,8 @@ function(sfml_set_stdlib target)
|
|||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (SFML_OS_MACOSX)
|
if(${CMAKE_GENERATOR} MATCHES "Xcode")
|
||||||
if (${CMAKE_GENERATOR} MATCHES "Xcode")
|
|
||||||
sfml_set_xcode_property(${target} CLANG_CXX_LIBRARY "libc++")
|
sfml_set_xcode_property(${target} CLANG_CXX_LIBRARY "libc++")
|
||||||
else()
|
|
||||||
target_compile_options(${target} PRIVATE "-stdlib=libc++")
|
|
||||||
target_link_libraries(${target} PRIVATE "-stdlib=libc++")
|
|
||||||
endif()
|
|
||||||
endif()
|
endif()
|
||||||
endfunction()
|
endfunction()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user