forked from KolibriOS/kolibrios
38098ecc9f
1) use EditBox to display and enter the path, switch by use Tab key 2) fixed sorting of files 3) Icons by Leency git-svn-id: svn://kolibrios.org@1244 a494cfbc-eb01-0410-851d-a64ba20cac60
18 lines
445 B
Batchfile
18 lines
445 B
Batchfile
REM compiling examples
|
|
if not exist bin mkdir bin
|
|
|
|
@fasm.exe -m 16384 ctrldemo.asm bin\ctrldemo.kex
|
|
@kpack bin\ctrldemo.kex
|
|
|
|
@fasm.exe -m 16384 OpenDial.asm bin\OpenDial
|
|
@kpack bin\OpenDial
|
|
|
|
@copy reload_16x16_8b.png bin\reload_16x16_8b.png
|
|
@copy cnv_png.obj bin\cnv_png.obj
|
|
@copy icons.ini bin\icons.ini
|
|
@copy z_icons.png bin\z_icons.png
|
|
|
|
@fasm.exe -m 16384 editbox_ex.asm bin\editbox_ex.kex
|
|
@kpack bin\editbox_ex.kex
|
|
|
|
pause |