9 lines
121 B
Batchfile
Executable file
9 lines
121 B
Batchfile
Executable file
@echo off
|
|
if exist "%WIX%bin\candle.exe" goto found
|
|
|
|
echo WiX must be installed.
|
|
exit 1
|
|
|
|
:found
|
|
"%WIX%bin\candle.exe" %*
|