Skip to content

Commit

Permalink
Fix CMAKE_INSTALL_LIBDIR example in README.md
Browse files Browse the repository at this point in the history
 In README, CMAKE_INSTALL_LIBDIR is set up with the "lib" path.
 The lib path is recorded in the pc file referenced by the pkg-config tool.
 This path must be modified to the absolute path "/lib".

Signed-off-by: linuxias <[email protected]>
  • Loading branch information
linuxias committed Feb 27, 2024
1 parent 0085b9d commit 8df0279
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ $ sudo systemctl start mosquitto
### Build and Run test
```
# cd $NNST_EDGE_ROOT
$ cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib -DENABLE_TEST=ON -DMQTT_SUPPORT=ON
$ cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=/lib -DENABLE_TEST=ON -DMQTT_SUPPORT=ON
$ make -C build install
# Run test
Expand Down

0 comments on commit 8df0279

Please sign in to comment.