File: template_exe.bat.in

package info (click to toggle)
sight 25.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,184 kB
  • sloc: cpp: 289,476; xml: 17,257; ansic: 9,878; python: 1,379; sh: 144; makefile: 33
file content (19 lines) | stat: -rw-r--r-- 351 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@echo off

REM Batch script to ease the launch of a Sight application on Windows.
REM
REM This sets the proper PATH to launch the application

REM Do not modify this file, it is automatically generated by CMake.

SETLOCAL

SET "BINDIR=%~dp0"
SET "PATH=%BINDIR%;%PATH%"

@ADMIN_REQUEST@
%BINDIR%\@PROJECT_EXECUTABLE@ %*

ENDLOCAL

exit /b %ERRORLEVEL%