File: CheckFilesMwRelease.bat

package info (click to toggle)
beid 3.5.2.dfsg-10
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 147,240 kB
  • ctags: 34,507
  • sloc: cpp: 149,944; ansic: 41,577; java: 8,927; cs: 6,528; sh: 2,426; perl: 1,866; xml: 805; python: 463; makefile: 263; lex: 92
file content (16 lines) | stat: -rw-r--r-- 652 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@echo [INFO] Check if the Middleware is already build (in release)
@echo [INFO] Input BEID_DIR_MW_RELEASE=%BEID_DIR_MW_RELEASE%
@set FILE_TO_FIND="beid35libCpp.dll" "beid35libCpp.lib" "beid35libCS.dll" "beid35libCS_Wrapper.dll" "beid35libJava_Wrapper.dll"
@echo [INFO] Looking for files: %FILE_TO_FIND%

@set BEID_DIR_MW_RELEASE=%~dp0_Binaries35\Release
@set FILE_NOT_FOUND=
@for %%i in (%FILE_TO_FIND%) do @if not exist "%~dp0_Binaries35\Release\%%~i" set FILE_NOT_FOUND=%%~i
@if "%FILE_NOT_FOUND%"=="" goto find_MW

@echo [ERROR] MW release files could not be found
@exit /B 1

:find_MW
@echo [INFO] MW release files found
@exit /B 0