109 | | Project URL: [https://www.sqlite.org/] |
110 | | |
111 | | Use the project file included in the Sqlite project file diff page. |
112 | | |
113 | | Project file diffs: [wiki:AdminDepLibsSqlite Sqlite] |
114 | | |
| 109 | Project URL: !https://www.sqlite.org [[BR]]Follow these build instructions:[[BR]]1) Download the amalgamated source code files: !https://www.sqlite.org/index.html [[BR]]2) Open Visual Studio command prompt and cd to uncompressed amalagamted source directory:[[BR]][[BR]] |
| 110 | {{{ |
| 111 | $ cl sqlite3.c -DSQLITE_DEBUG -O2 -link -dll -out:sqlite3_Win32_Debug.dll |
| 112 | $ cl sqlite3.c -O2 -link -dll -out:sqlite3_Win32_Release.dll |
| 113 | $ "c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\link.exe" /lib /def:sqlite3.def /MACHINE:X86 |
| 114 | }}} |
| 115 | [[BR]]3) Open Visual Studio x64 Win64 Command Prompt (note this is different than the normal visual studio command prompt):[[BR]][[BR]] |
| 116 | {{{ |
| 117 | $ cl sqlite3.c -DSQLITE_DEBUG -O2 -link -dll -out:sqlite3_x64_Debug.dll |
| 118 | $ cl sqlite3.c -O2 -link -dll -out:sqlite3_x64_Release.dll |
| 119 | $ "c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\link.exe" /lib /def:sqlite3.def /MACHINE:X64 |
| 120 | }}} |
| 121 | [[BR]]4) Copy resulting files to the appropriate boinc_dependencies directories |