https://github.com/sarcasm/slog
https://github.com/sarcasm/slog
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/sarcasm/slog
- Owner: Sarcasm
- Created: 2017-09-28T01:24:36.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-21T16:08:28.000Z (over 8 years ago)
- Last Synced: 2025-02-28T10:57:33.786Z (over 1 year ago)
- Language: Python
- Size: 10.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
****
slog
****
.. contents::
:local:
Introduction
============
This library is a template for what *I* consider a clean and modern C++ project.
Prerequisites
=============
To setup your build environment,
get the external dependencies in place,
use the `conda `_ package manager::
conda env create -f environment.yml
.. note:: If the package is not found,
you may need to add the `Sarcasm channel `_ first::
conda config --append channels sarcasm
You now need to source the environment::
source activate slog-env
Build
=====
To build, type::
mkdir build
cd build
cmake -DCMAKE_PREFIX_PATH=$CONDA_PREFIX -DCMAKE_BUILD_TYPE=Release ..
cmake --build . --config Release
ctest -C Release --output-on-failure