mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 01:05:48 +01:00 
			
		
		
		
	Use add_compile_options where appropriate
				
					
				
			This commit is contained in:
		@@ -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()
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user