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