Add Build script

This commit is contained in:
Cj 2024-06-19 23:29:52 -04:00
parent 94be084d7e
commit d867e3a434

16
Templates/Build.Bat Normal file
View 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.
)