fraunhoferhhi / vvenc

VVenC, the Fraunhofer Versatile Video Encoder
https://www.hhi.fraunhofer.de/en/departments/vca/technologies-and-solutions/h266-vvc.html
BSD 3-Clause Clear License
968 stars 173 forks source link

Wiki issue in Build section #466

Closed patriceangot closed 1 week ago

patriceangot commented 2 weeks ago

In the "Build using plain CMake" section of the wiki, the "install (locally)" seems not correct. Targets release-shared and release-static are mixed

install (locally): cmake -S . -B build -DCMAKE_BUILD_TYPE=Release cmake --build build/release-shared -j cmake --build build/release-static --target in

The correct commands should be the followings : install (locally): cmake -S . -B build/release-static -DCMAKE_BUILD_TYPE=Release cmake --build build/release-static -j cmake --build build/release-static --target in

lehmann-c commented 1 week ago

Thanks for noticing! The wiki has been updated.