fltk/ide/VisualC2010/cfluid.cmd
Albrecht Schlosser 168ec2e89e Fix more line endings of (DOS) command files in IDE folders.
These DOS command files / scripts / batch files should have cr/lf line endings.
2018-12-22 01:09:10 +01:00

14 lines
172 B
Batchfile

@echo off
echo Compiling fluid files ...
pushd .
cd ../../test
if "%1"=="/D" goto debugmode
..\fluid\fluid -c "%1"
goto end
:debugmode:
..\fluid\fluidd -c "%2"
:end
popd