From d0d8b534f1cee6f7b79df79f07640c7f0c641bfa Mon Sep 17 00:00:00 2001 From: mattn Date: Mon, 25 May 2015 12:47:36 +0900 Subject: [PATCH] Updated Mrbgems FAQ (markdown) --- Mrbgems-FAQ.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mrbgems-FAQ.md b/Mrbgems-FAQ.md index 9faa4fa..ecf9765 100644 --- a/Mrbgems-FAQ.md +++ b/Mrbgems-FAQ.md @@ -25,13 +25,13 @@ end Or you may run into a problem where the mruby.h can't be found in that case do this. ```ruby conf.cc do |cc| - cc.include_paths = ['path\to\mruby\include', 'path\to\your\include'] + cc.include_paths = ['path/to/mruby/include', 'path/to/your/include'] end ``` Now if you want to link files you do so like this. ```ruby spec.linker do |linker| - linker.library_paths = 'path\to\lib' + linker.library_paths = 'path/to/lib' linker.libraries = ['mingw32', 'foo', 'bar'] end ```