diff --git a/README.md b/README.md index 748d4d7..efeb658 100644 --- a/README.md +++ b/README.md @@ -5,28 +5,21 @@ This project aims to provide a tool for the extraction of the ## Build Instructions (Using CMake) ```bash git clone https://github.com/0xvpr/vpr-extract && cd vpr-extract -autoreconf -i -mkdir Build && cd Build -../configure --prefix=/usr/local -make -# make install # uncomment if you want it available globally +cmake -B build +cmake --build build +# sudo cmake --build build --target install # uncomment for local install ``` ## Example Usage ```bash -vpr-extract path/to/file-1 path/to/file-2 +vpr-extract path/to/file-1.obj path/to/file-2.obj # -# Target: path/to/file-1 -> out-0.bin -# Size of path/to/file-1: 420 -# Written to 'out-0.bin'. +# Target: path/to/file-1.obj -> file-1.bin +# Size of path/to/file-1.obj: 420 +# Written to 'file-1.bin'. # -# Target: path/to/file-2 -> out-1.bin -# Size of path/to/file-2: 69 -# Written to 'out-1.bin'. +# Target: path/to/file-2.obj -> file-2.bin +# Size of path/to/file-2.obj: 69 +# Written to 'file-2.bin'. # ``` - -## Testing -```bash -make check -``` diff --git a/build.sh b/build.sh deleted file mode 100644 index 3ff123b..0000000 --- a/build.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash - -cmake -B build -cmake --build build