Skip to content
This repository was archived by the owner on May 8, 2019. It is now read-only.

Setting up

Arves100 edited this page Nov 28, 2018 · 6 revisions

Requirements

  • CMake 3.1+
  • Linux/FreeBSD: Any compiler that works with C++11 (GCC 4.9+, CLang 4.0+)
  • Windows: Visual Studio 2015+
  • A MySQL or MariaDB server (optional but recommended,

Building

  1. Clone the repository (Don't forget to clone the submodules with git submodule update --force --init --recursive
  2. Use cmake to generate the project
  3. Compile

Database setup (Only for MariaDB or MySQL)

Create a new database for the server, and a user that's able to access it. (CREATE DATABASE retrospy; GRANT ALL PRIVILEGES ON retrospy.* TO 'retrospy'@'localhost' IDENTIFIED BY 'password' WITH GRANT OPTION; FLUSH PRIVILEGES;)

Then, drop this SQL file into the newly created database.

Clone this wiki locally