mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +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:
parent
c8a41409d9
commit
de1d8ec070
@ -321,11 +321,13 @@ endif()
|
|||||||
# Note that find_library does not reliably find it so we have to resort to this.
|
# 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.
|
# Also, passing -latomic is not always the same as adding atomic to the library list.
|
||||||
include(CheckCSourceCompiles)
|
include(CheckCSourceCompiles)
|
||||||
set(CMAKE_REQUIRED_LIBRARIES "-latomic")
|
if(NOT CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
|
||||||
check_c_source_compiles("int main(){}" HAVE_LINK_ATOMIC)
|
set(CMAKE_REQUIRED_LIBRARIES "-latomic")
|
||||||
set(CMAKE_REQUIRED_LIBRARIES "")
|
check_c_source_compiles("int main(){}" HAVE_LINK_ATOMIC)
|
||||||
if(HAVE_LINK_ATOMIC)
|
set(CMAKE_REQUIRED_LIBRARIES "")
|
||||||
set(PLATFORM_LIBS ${PLATFORM_LIBS} "-latomic")
|
if(HAVE_LINK_ATOMIC)
|
||||||
|
set(PLATFORM_LIBS ${PLATFORM_LIBS} "-latomic")
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
include(CheckSymbolExists)
|
include(CheckSymbolExists)
|
||||||
|
Loading…
Reference in New Issue
Block a user