143
by Daniel Foré
Create README.md (#11) |
1 |
# Contractor
|
2 |
||
3 |
## Building, Testing, and Installation
|
|
4 |
||
5 |
It's recommended to create a clean build environment |
|
6 |
||
7 |
mkdir build
|
|
8 |
cd build/
|
|
9 |
|
|
10 |
Run `cmake` to configure the build environment and then `make` to build
|
|
11 |
||
12 |
cmake -DCMAKE_INSTALL_PREFIX=/usr .. |
|
13 |
make |
|
14 |
||
15 |
To install, use `make install`
|
|
16 |
||
17 |
sudo make install
|