mirror of
				https://github.com/vcmi/vcmi.git
				synced 2025-10-31 00:07:39 +02:00 
			
		
		
		
	Set CMAKE_C_COMPILER and CMAKE_CXX_COMPILER to gcc and g++ for windows-mingw-release preset.
Prevents various situations where clang is chosen over gcc, which is unintended when using windows-mingw-release preset
This commit is contained in:
		| @@ -134,7 +134,9 @@ | ||||
|             "description": "VCMI Windows Ninja using MinGW", | ||||
|             "inherits": "default-release", | ||||
|             "cacheVariables": { | ||||
|                 "CMAKE_BUILD_TYPE": "Release" | ||||
|                 "CMAKE_BUILD_TYPE": "Release", | ||||
|                 "CMAKE_C_COMPILER": "gcc", | ||||
|                 "CMAKE_CXX_COMPILER": "g++" | ||||
|             } | ||||
|         }, | ||||
|         { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user