echo off

set semanticmergetool="%~dp0..\..\..\semanticmergetool.exe"

set contributorFiles= -s="%~dp0src.java" -b="%~dp0base.java" -d="%~dp0dst.java"

set resultFile= -r="%~dp0semanticmergetoolresult.java"

set mergeOptions=%contributorFiles%%resultFile%

%semanticmergetool% %mergeOptions%

::  if you want to launch manually instead, you can try the following :-)

::  if you want to launch manually instead, you can try the following from the base directory:-)

::  ..\..\..\semanticmergetool.exe -s=src.java -b=base.java -d=dst.java -r=semanticmergetoolresult.java