Add Build script
This commit is contained in:
parent
94be084d7e
commit
d867e3a434
16
Templates/Build.Bat
Normal file
16
Templates/Build.Bat
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
@echo off
|
||||||
|
setlocal
|
||||||
|
|
||||||
|
set executable_name="ReCodeIt.exe"
|
||||||
|
|
||||||
|
rem Check if the executable is in the PATH
|
||||||
|
where /q %executable_name%
|
||||||
|
|
||||||
|
if %errorlevel% equ 0 (
|
||||||
|
rem Executable found in PATH, run it with arguments
|
||||||
|
echo Found "%executable_name%" in the system PATH
|
||||||
|
%executable_name% %*
|
||||||
|
) else (
|
||||||
|
rem Executable not found in PATH
|
||||||
|
echo Error: "%executable_name%" not found in the system PATH.
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user