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

Update Build and Test Instructions Syntax Highlighting #23

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Changes from all commits
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,44 +119,44 @@ Follow these steps to build, test, and set up your development environment. Baze

**Step 1: Build the Project**

```bash
```
bazel build //...
```

**Step 2: Run Tests**

```bash
```
bazel test //...
```

### Option 2: Using CMake and Conan

**Step 1: Install Dependencies**

```bash
```
conan profile detect --force
conan install . --build=missing
conan install . -s build_type=Debug --build=missing
```

**Step 2: Configure and Build**

```bash
```
cmake --preset release
cmake --build --preset release
```

**Step 3: Run Tests**

```bash
```
ctest --preset release
```

### Optional: Debug Configuration

For Debug configuration:

```bash
```
cmake --preset debug
cmake --build --preset debug
ctest --preset debug
Expand Down