Re: [sqlite] Compiling SQLite as .lib increases project size and build time?

2009-12-17 Thread Teg
Hello Kurt, The size increase is because you're including code IN the program instead of having it in a DLL. That's one of the benefits of DLLs. The second thing, the build time thing is because you've chosen to build SQLite each and every time you build the entire project. That's purely a design

Re: [sqlite] Compiling SQLite as .lib increases project size and build time?

2009-12-17 Thread Pavel Ivanov
> 1>LINK : fatal error LNK1181: cannot open input file > '..\release\sqlite.lib' Is this filename something that you wrote yourself in configuration of your project? If you compile something as dll you don't need to mention its library as additional linking source in dependent projects. Pavel On

[sqlite] Compiling SQLite as .lib increases project size and build time?

2009-12-17 Thread Kurt D. Knudsen
Hi all, Since we're moving our project over from flat-files to an SQL DB, I've noticed that projects that utilize SQLite3 have increased to over 500k in size. Their original sizes were between 50-100k. Also, the build times have increased dramatically. I have SQLite added as a separate project