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

find_dependencies.cmd « windows « build_files - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a861cf1c98b91c30565dbf11f6cc128a7fb5d0ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
REM find all dependencies and set the corresponding environment variables. 
for %%X in (svn.exe) do (set SVN=%%~$PATH:X)
for %%X in (cmake.exe) do (set CMAKE=%%~$PATH:X)
for %%X in (git.exe) do (set GIT=%%~$PATH:X)
if NOT "%verbose%" == "" (
	echo svn   : "%SVN%"
	echo cmake : "%CMAKE%"
	echo git   : "%GIT%"
)
if "%CMAKE%" == "" (
	echo Cmake not found in path, required for building, exiting...
	exit /b 1
)