Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alex85k/sqlite3-cmake
cmake script to sqlite3 distibution to build with different compilers
https://github.com/alex85k/sqlite3-cmake
Last synced: 3 months ago
JSON representation
cmake script to sqlite3 distibution to build with different compilers
- Host: GitHub
- URL: https://github.com/alex85k/sqlite3-cmake
- Owner: alex85k
- License: other
- Created: 2013-06-10T15:16:26.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2022-10-16T00:57:20.000Z (over 2 years ago)
- Last Synced: 2023-07-07T22:31:16.657Z (over 1 year ago)
- Language: C
- Size: 10.4 MB
- Stars: 52
- Watchers: 4
- Forks: 38
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeCompiler - sqlite3-cmake
README
sqlite3-cmake
=============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
```