You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
185B

  1. @echo off
  2. echo Compiling fluid files ...
  3. pushd .
  4. cd ../../test
  5. if "%1"=="/D" goto debugmode
  6. ..\fluid\fluid -c "%1"
  7. goto end
  8. :debugmode:
  9. ..\fluid\fluidd -c "%2"
  10. :end
  11. popd