Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mnt: remove Makefile #118

Merged
merged 2 commits into from
Sep 30, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
updated documentation
  • Loading branch information
PABannier committed Sep 30, 2023
commit 17d57441ca0f68ef2b35eba4214ee971b8497694
23 changes: 7 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,23 +160,14 @@ cd bark.cpp

### Build

In order to build bark.cpp you have two different options. We recommend using `CMake` for Windows.
In order to build bark.cpp you must use `CMake`:

- Using `make`:
- On Linux or MacOS:

```bash
make
```

- Using `CMake`:

```bash
mkdir build
cd build
cmake ..
cmake --build . --config Release
```
```bash
mkdir build
cd build
cmake ..
cmake --build . --config Release
```

### Prepare data & Run

Expand Down
Loading