port: fix cmake compile instructions

This commit is contained in:
Matthias Ringwald 2024-07-01 16:21:33 +02:00
parent 864e2f2b6b
commit 8e0bef02fe
2 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ functionality will be interrupted.
## Compilation ## Compilation
BTstack's FeeeBSD port does not have additional dependencies. To compile the cmake project with make BTstack's FeeeBSD port does not have additional dependencies. To compile the cmake project with Make
mkdir build mkdir build
cd build cd build
@ -22,9 +22,9 @@ BTstack's FeeeBSD port does not have additional dependencies. To compile the cma
or using Ninja: or using Ninja:
mkdir ninja mkdir build
cd ninja cd build
cmake .. cmake -G Ninja ..
ninja ninja
## Running the examples ## Running the examples

View File

@ -20,7 +20,7 @@ or using CMake + Ninja:
mkdir build mkdir build
cd build cd build
cmake -G Ninja cmake -G Ninja ..
ninja ninja
## Environment Setup ## Environment Setup