diff options
| author | mattn <[email protected]> | 2014-03-05 12:46:07 +0900 |
|---|---|---|
| committer | mattn <[email protected]> | 2014-03-05 12:46:07 +0900 |
| commit | fb621ef4113d3a5cd6b54c68ad04d33d17c0c571 (patch) | |
| tree | 8123ff1ee051964afe20ab12e132492e55960aba /mrbgems/mruby-bin-mruby-config/mruby-config.bat | |
| parent | ba608fb38ac4f82e68c53305f59017520fa76209 (diff) | |
| download | mruby-fb621ef4113d3a5cd6b54c68ad04d33d17c0c571.tar.gz mruby-fb621ef4113d3a5cd6b54c68ad04d33d17c0c571.zip | |
Add mruby-bin-mruby-config
Diffstat (limited to 'mrbgems/mruby-bin-mruby-config/mruby-config.bat')
| -rw-r--r-- | mrbgems/mruby-bin-mruby-config/mruby-config.bat | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/mrbgems/mruby-bin-mruby-config/mruby-config.bat b/mrbgems/mruby-bin-mruby-config/mruby-config.bat new file mode 100644 index 000000000..ffb52adbc --- /dev/null +++ b/mrbgems/mruby-bin-mruby-config/mruby-config.bat @@ -0,0 +1,22 @@ +@echo off + +:top +shift +if "%0" equ "" goto :eof +if "%0" equ "--cflags" goto cflags +if "%0" equ "--ldflags" goto ldflags +if "%0" equ "--libs" goto libs +echo Invalid Option +goto :eof + +:cflags +echo MRUBY_CFLAGS +goto top + +:libs +echo MRUBY_LIBS +goto top + +:ldflags +echo MRUBY_LDFLAGS +goto top |
