Compare commits
2 Commits
7a2e60d877
...
2172ce3da3
| Author | SHA1 | Date |
|---|---|---|
|
|
2172ce3da3 | |
|
|
1e7cdffd69 |
22
README.md
22
README.md
|
|
@ -4,11 +4,29 @@ and public headers.
|
|||
|
||||
## Prerequisites
|
||||
* Ubuntu 22.04 (or equivalent)
|
||||
* Python3 venv support installed (i.e. `sudo apt install python3-venv`)
|
||||
* Additional required packages:
|
||||
* `g++`
|
||||
* `cmake`
|
||||
* `python3-venv`
|
||||
|
||||
## Setup
|
||||
Create a `python` virtual environment and install `conan`:
|
||||
1. Create a `python` virtual environment, install `conan`, and create a default profile:
|
||||
```bash
|
||||
python3 -m venv conan.venv
|
||||
source conan.venv/bin/activate
|
||||
pip install conan
|
||||
conan profile detect
|
||||
```
|
||||
|
||||
## Building and running
|
||||
1. To build, run:
|
||||
```bash
|
||||
./build.sh
|
||||
```
|
||||
1. The build command will generate a `deb` package in the `_packages` directory. To install (to
|
||||
`/usr/local`) run:
|
||||
```
|
||||
sudo dpkg -i _packages/_packages/cppchallenge_1.0.0_*.deb
|
||||
sudo ldconfig
|
||||
```
|
||||
__TODO__: The `sudo ldconfig` step should be added to the `deb` package `postinst` step...
|
||||
|
|
|
|||
Loading…
Reference in New Issue