mirror of
https://github.com/AlexMacocian/MonoGame.Extended.git
synced 2026-07-24 20:12:23 +00:00
15 lines
212 B
Batchfile
15 lines
212 B
Batchfile
setlocal
|
|
|
|
SET TWOMGFX="mgfxc"
|
|
|
|
@for /f %%f IN ('dir /b *.fx') do (
|
|
|
|
call %TWOMGFX% %%~nf.fx %%~nf.ogl.mgfxo /Profile:OpenGL
|
|
|
|
call %TWOMGFX% %%~nf.fx %%~nf.dx11.mgfxo /Profile:DirectX_11
|
|
|
|
)
|
|
|
|
endlocal
|
|
|
|
pause |