File: build_docs-HTML.bat

package info (click to toggle)
mrpt 1%3A1.4.0-7
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 65,000 kB
  • ctags: 84,479
  • sloc: cpp: 417,767; ansic: 95,106; xml: 3,792; python: 412; sh: 276; makefile: 225; ruby: 30
file content (26 lines) | stat: -rw-r--r-- 840 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@echo off
REM --------------------------------------------------------
REM    Batch file for generating the MRPT's documentation 
REM     in Windows. Requires MinGW & MSys for Windows
REM     (see http://www.mingw.org/)
REM          			Jose Luis Blanco, Aug 2007
REM --------------------------------------------------------

REM Run the sh script:
ECHO ON

sh.exe scripts/build_docs.sh -h

@ECHO OFF
IF ERRORLEVEL 0 GOTO END_BATCH

ECHO -------------------------------------------------------------
ECHO   It seems you don't have MinGW & MSys installed in your system!
ECHO    (Couldn't find "sh.exe") 
ECHO   If it is installed, make sure it is in the PATH
ECHO   You can download MinGW freely from: http://www.mingw.org/
ECHO -------------------------------------------------------------
ECHO.

:END_BATCH
pause