Welcome to mirror list, hosted at ThFree Co, Russian Federation.

detect_architecture.cmd « windows « build_files - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd211668b7f8e47ade37712039ec42bf4f73405c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if "%BUILD_ARCH%"=="" (
	if "%PROCESSOR_ARCHITECTURE%" == "AMD64" (
		set WINDOWS_ARCH= Win64
		set BUILD_ARCH=x64
	) else if "%PROCESSOR_ARCHITEW6432%" == "AMD64" (
		set WINDOWS_ARCH= Win64
		set BUILD_ARCH=x64
	) else (
		set WINDOWS_ARCH=
		set BUILD_ARCH=x86
	)
) else if "%BUILD_ARCH%"=="x64" (
	set WINDOWS_ARCH= Win64
) else if "%BUILD_ARCH%"=="x86" (
	set WINDOWS_ARCH=
)