ktoś tam
ktoś tam

Reputation: 969

SQLpp11 installation with PostgreSQL connector

How do I install SQLpp11 with PostgreSQL connector on Linux?

I use Linux Mint 17.2, Eclipse CDT and I have PostgreSQL 9.4 already installed.

I know, it's trivial but I'm doing this first time. I'm a newbie.

GitHub repository:

Upvotes: 2

Views: 573

Answers (1)

Rumburak
Rumburak

Reputation: 3571

Both repositories are using cmake, therefore you should be fine with

mkdir build
cd build
cmake .. # maybe some other options
make
make install

in each of the repos, starting with sqlpp11.

Upvotes: 1

Related Questions