]> git.lizzy.rs Git - sqlite3-cmake.git/blob - README.md
Revert "Link to dl library"
[sqlite3-cmake.git] / README.md
1 sqlite3-cmake
2 =============
3
4 Simplest CMake script + full sqlite3 amalgamation distibution to build with different compilers
5
6 Build examples:
7
8 On Windows from Visual Studio command prompt
9 ```
10   cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=d:/libs
11   nmake install
12 ```
13
14 On Windows from Visual Studio IDE
15 ```
16   cmake -G "Visual Studio 12 Win64" -DCMAKE_INSTALL_PREFIX=d:/libs
17   < open and build sqlite3.sln >
18 ```
19
20 On Linux/FreeBSD without root access
21 ```
22   cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/home/student/libs
23   make install
24 ```