Start installation instructions in Markdown

This commit is contained in:
James P. Howard, II
2021-09-21 20:58:47 -04:00
parent f474d6feff
commit 30fdd46d93
2 changed files with 24 additions and 19 deletions

24
docs/installation.md Normal file
View File

@@ -0,0 +1,24 @@
# Installation
## Requirements
The core of Kami, `libkami` has no requirements beyond a modern C++ compiler. However, both the examples provided and
the
## Compiling
To compile and test locally in kami/build:
git clone https://github.com/k3jph/kami.git
cd kami
conan install -if build .
cmake -B build -DBUILD_SHARED_LIBS:BOOL=FALSE
cmake --build build
cmake --build build --target test
## Conan Installation (Local)
To install via [Conan](https://conan.io/):
conan create . kami/develop

View File

@@ -1,19 +0,0 @@
Installation
============
Compiling
---------
To compile and test locally in kami/build::
git clone https://github.com/k3jph/kami.git
cd kami
conan install -if build .
cmake -B build -DBUILD_SHARED_LIBS:BOOL=FALSE
cmake --build build
cmake --build build --target test
Conan Installation
------------------
Forthcoming.