Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tiendq/sqlitecppexample

C++ example project using SQLiteCpp as a Git submodule
https://github.com/tiendq/sqlitecppexample

cpp database sqlite

Last synced: 5 days ago
JSON representation

C++ example project using SQLiteCpp as a Git submodule

Awesome Lists containing this project

README

        

SQLiteC++ Example
-----------------

The C++ example project using [SQLiteCpp](https://github.com/tiendq/SQLiteCpp) as a Git submodule. More examples are available at `SQLiteCpp` repo.

## Getting Started

Clone this repository and then init and update submodule `SQLiteCpp`.

```shell
git clone --recurse-submodules https://github.com/tiendq/SQLiteCppExample.git
```

Build with CMake.

```shell
mkdir build
cd build
cmake ..
cmake --build .
```

## History

This repo is originally forked from [SQLiteCpp_Example](https://github.com/SRombauts/SQLiteCpp_Example).