From e7d99d3987c30bd30550f12810f4f6b01ebe16cf Mon Sep 17 00:00:00 2001 From: Livox-SDK Date: Sat, 2 Feb 2019 17:56:07 +0800 Subject: [PATCH] [B]Fix Bugs in README.md --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a26c9bc..63ded5c 100644 --- a/README.md +++ b/README.md @@ -40,16 +40,17 @@ In the Livox SDK directory, run the following commands to compile the project: cd build cmake .. make +sudo make install ``` ### 4.1.2 Windows 7/10 #### Dependencies Livox SDK requires [CMake 3.0.0+](https://cmake.org/), [Apache Portable Runtime (APR) 1.61+](http://apr.apache.org/) and [Boost 1.54+](https://www.boost.org/) as dependencies. You can choose any C++ compiler to build the Livox SDK API. Here we use [Visual Studio 2015/2017](https://visualstudio.microsoft.com/) as an example, and [vcpkg](https://github.com/Microsoft/vcpkg) is recommend for building our project. The dependency libraries can be installed by: ``` -.\vcpkg install apr && \ -.\vcpkg install boost-atomic && \ -.\vcpkg install boost-system && \ -.\vcpkg install boost-thread && \ +.\vcpkg install apr +.\vcpkg install boost-atomic +.\vcpkg install boost-system +.\vcpkg install boost-thread .\vcpkg integrate install ``` Then, in the Livox SDK directory, run the following commands to create the Visual Studio solution file. Please replace [vcpkgroot] with your vcpkg installation path.