Skip to content

Commit

Permalink
README: Use absolute path in CMAKE_PREFIX_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKagstrom committed Jul 6, 2024
1 parent 4ee2381 commit 2461c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ conan install -of build --build=missing -s build_type=Release conanfile.txt

### Linux
```
cmake -B build -GNinja -DCMAKE_PREFIX_PATH="build/build/Release/generators/" -DCMAKE_BUILD_TYPE=Release
cmake -B build -GNinja -DCMAKE_PREFIX_PATH="`pwd`/build/build/Release/generators/" -DCMAKE_BUILD_TYPE=Release
ninja -C build
```

Expand All @@ -56,7 +56,7 @@ conan install -of build --build=missing -s build_type=Release conanfile.txt
```

```
cmake -B build -GNinja -DCMAKE_PREFIX_PATH="`pwd`/build/Release/generators/;`brew --prefix binutils`" -DCMAKE_BUILD_TYPE=Release
cmake -B build -GNinja -DCMAKE_PREFIX_PATH="`pwd`build/build/Release/generators/;`brew --prefix binutils`" -DCMAKE_BUILD_TYPE=Release
ninja -C build
```

Expand Down

0 comments on commit 2461c19

Please sign in to comment.