We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9944fe3 + 63eee8f commit e51f66bCopy full SHA for e51f66b
readme.md
@@ -60,20 +60,23 @@ cd loc
60
# setup vcpkg
61
git clone https://github.com/microsoft/vcpkg.git
62
cd vcpkg
63
-./bootstrap-vcpkg..sh
+./bootstrap-vcpkg.sh
64
cd ..
65
export VCPKG_ROOT=$(pwd)/vcpkg
66
export PATH=${VCPKG_ROOT}:${PATH}
67
68
-# Create build directory and configure
69
-mkdir -p build
70
-cd build
71
-cmake --preset=linux-release ..
+# configure
+cmake --preset=linux-release .
72
73
# Build the project
74
-cd ../out/build/linux-release
+cd out/build/linux-release
75
ninja
76
-cd ../../..
+
+# Run the tests
+cd loc.tests
77
+./loc.tests
78
79
+# release binary is located at out/build/linux-release/loc/loc
80
```
81
82
## Usage
0 commit comments