Skip to content

Commit

Permalink
fix dependency installation
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Dec 25, 2024
1 parent 236499d commit a562c4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ echo 'Installing zlib and png.'

cd ..

cd libs/image/zlib/src && cmake "-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true" && make && cd -
cd libs/image/png/src && cmake "-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true" && make && cd -
cd libs/image/zlib/src && cmake -S . -B build "-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true" && make -C build && cd -
cd libs/image/png/src && cmake -S . -B build "-DCMAKE_POSITION_INDEPENDENT_CODE:BOOL=true" && make -C build && cd -

echo 'zlib and png installation is finished.'

Expand Down

0 comments on commit a562c4b

Please sign in to comment.