diff --git a/user_manual.md b/user_manual.md index d8ef1524..00b8ffae 100644 --- a/user_manual.md +++ b/user_manual.md @@ -11,6 +11,7 @@ To build ethos, run: mkdir build cd build cmake .. +make ``` The `ethos` binary will be available in `build/src/`. @@ -20,9 +21,10 @@ The `ethos` binary will be available in `build/src/`. By default, the above will be a production build of `ethos`. To build a debug version of `ethos`, that is significantly slower but has assertions and trace messages enabled, run: ```shell -mkdir build -DCMAKE_BUILD_TYPE=Debug +mkdir build cd build -cmake .. +cmake -DCMAKE_BUILD_TYPE=Debug .. +make ``` The `ethos` binary will be available in `build/src/`. @@ -39,8 +41,8 @@ The set of available options `