mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 10:23:47 +01:00
Do not link /latomic on MSVC (#14564)
MSVC does not recognize /latomic, resulting in a warning upon configure.
This commit is contained in:
@ -321,12 +321,14 @@ endif()
|
||||
# Note that find_library does not reliably find it so we have to resort to this.
|
||||
# Also, passing -latomic is not always the same as adding atomic to the library list.
|
||||
include(CheckCSourceCompiles)
|
||||
if(NOT CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
||||
set(CMAKE_REQUIRED_LIBRARIES "-latomic")
|
||||
check_c_source_compiles("int main(){}" HAVE_LINK_ATOMIC)
|
||||
set(CMAKE_REQUIRED_LIBRARIES "")
|
||||
if(HAVE_LINK_ATOMIC)
|
||||
set(PLATFORM_LIBS ${PLATFORM_LIBS} "-latomic")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
include(CheckSymbolExists)
|
||||
check_symbol_exists(strlcpy "string.h" HAVE_STRLCPY)
|
||||
|
Reference in New Issue
Block a user