mirror of
https://github.com/minetest/minetest.git
synced 2025-01-07 22:07:30 +01:00
Use add_compile_options
where appropriate
This commit is contained in:
parent
a4d1b5b155
commit
818bca68d1
@ -896,12 +896,12 @@ if(MSVC)
|
||||
# Flags that cannot be shared between cl and clang-cl
|
||||
# https://clang.llvm.org/docs/UsersManual.html#clang-cl
|
||||
if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fuse-ld=lld")
|
||||
add_compile_options(-fuse-ld=lld)
|
||||
|
||||
# Disable pragma-pack warning
|
||||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -Wno-pragma-pack")
|
||||
else()
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP")
|
||||
add_compile_options(/MP)
|
||||
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /TP /FD /GL")
|
||||
set(CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /LTCG")
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user