Skip to content

Commit

Permalink
Merge pull request #19 from manufactory/master
Browse files Browse the repository at this point in the history
Add manual build instructions for Ubuntu 22.04
  • Loading branch information
m-schuetz authored Feb 25, 2024
2 parents 80a64c9 + 533c519 commit 9656feb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@ cmake ../
make
```

__Linux (manual build):__

Tested on Ubuntu 22.04 LTS

Install required packages
```
apt install build-essential libbrotli-dev liblaszip-dev
```
Build binaries
```
cd src
g++ -std=c++20 -I../include/ -I../modules -idirafter../libs executable_extract_area.cpp ../modules/unsuck/unsuck_platform_specific.cpp -lbrotlidec -llaszip -o extract_area
g++ -std=c++20 -I../include/ -I../modules -idirafter../libs executable_extract_profile.cpp ../modules/unsuck/unsuck_platform_specific.cpp -lbrotlidec -llaszip -o extract_profile
```

__Windows:__
```
mkdir build
Expand Down

0 comments on commit 9656feb

Please sign in to comment.