]> git.lizzy.rs Git - sqlite3-cmake.git/blobdiff - README.md
update to SQLite 3.8.9
[sqlite3-cmake.git] / README.md
index 074534c009a5edc73d352b931fe88b5296b428ce..03e47f89a67c80a1ccc6c398b4c7a67cf88e31af 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,24 @@
 sqlite3-cmake
 =============
 
-CMake script to sqlite3 distibution to build with different compilers
+Simplest CMake script + full sqlite3 amalgamation distibution to build with different compilers
+
+Build examples:
+
+On Windows from Visual Studio command prompt
+```
+  cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=d:/libs
+  nmake install
+```
+
+On Windows from Visual Studio IDE
+```
+  cmake -G "Visual Studio 12 Win64" -DCMAKE_INSTALL_PREFIX=d:/libs
+  < open and build sqlite3.sln >
+```
+
+On Linux/FreeBSD without root access
+```
+  cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/home/student/libs
+  make install
+``` 
\ No newline at end of file