blob: 60d1bb8f7f2c0cfa61458f6fc5f8f49a55581ef8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@echo off
setlocal enabledelayedexpansion
rem use the following 2 lines to manually point to the google test folder \\sw\%FOLDER_NEEDLE%
rem set FOLDER=E:\nx0\physx\externals\GoogleTest\gtest-1.4.0
rem goto :manualfolder
set FOLDER_NEEDLE=physx\externals\GoogleTest\gtest-1.4.0
call "%~dp0/locate.bat" FOLDER %FOLDER_NEEDLE%
:manualfolder
set returnVal=%FOLDER%
( endlocal
set "%~1=%returnVal%"
)
goto :eof
|