Ran <[EMAIL PROTECTED]> wrote: > Hi all, > > I have added some functionality to the source of SQLite3 to be used in a > project I work on. The changes were done in func.c and in > sqlite.h.in<http://sqlite.h.in>(I added one function to the API). This > was done in Linux, and compiles and > run fine. > > Now I would like to port it also to windows and I am not sure how I can > build it using VC++. > > In the site of sqlite, there is a zip file with already processed files for > building in Windows. But obviously, I prefer to build from the same source I > have instead of copying/hacking the files in that zip file. > Maybe I missed the instruction in the site, but I could not find it there, > nor in the archives of the mailing list. > > Can anyone can tell which tools should I install on Windows for preparing > the files from the tar.gz sources to be built on windows? >
On Linux, type "make target_source". That will build a directory named "tsrc" that contains the files you normally find in the ZIP archive on the website. -- D. Richard Hipp <[EMAIL PROTECTED]>

