From c1d988456b95df002b191c01e2172a2da4d7563c Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Sat, 13 Jan 2007 22:06:51 +0000 Subject: a simple batch file to aid in building the library on win32 --- ext/sqlite3_api/win32/build.bat | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 ext/sqlite3_api/win32/build.bat diff --git a/ext/sqlite3_api/win32/build.bat b/ext/sqlite3_api/win32/build.bat new file mode 100755 index 0000000..cffb5ed --- /dev/null +++ b/ext/sqlite3_api/win32/build.bat @@ -0,0 +1,7 @@ +REM This is not guaranteed to work, ever. It's just a little helper +REM script that I threw together to help me build the win32 version of +REM the library. If someone with more win32-fu than I wants to make +REM something more robust, please feel free! I'd love to include it. +REM -- Jamis Buck + +cl /LD /Ie:\WinSDK\Include /Ic:\ruby\lib\ruby\1.8\i386-mswin32 /Ic:\ruby\sqlite3\src /Ic:\ruby\src\ruby-1.8.4_2006-04-14 sqlite3_api_wrap.c /link /LIBPATH:c:\ruby\sqlite3 /LIBPATH:e:\WinSDK\Lib /LIBPATH:c:\ruby\lib sqlite3.lib msvcrt-ruby18.lib -- cgit