mirror of
https://github.com/fltk/fltk.git
synced 2026-05-18 17:16:58 +08:00
168ec2e89e
These DOS command files / scripts / batch files should have cr/lf line endings.
14 lines
172 B
Batchfile
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
|