You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation on https://www.openshot.org/en/user-guide/ states to use the variable LIBOPENSHOT_AUDIO_DIR in order to point to the recently build openshot audio library. But the CMakeList is not using it but trying to find it on the system!
The documentation on https://www.openshot.org/en/user-guide/ states to use the variable LIBOPENSHOT_AUDIO_DIR in order to point to the recently build openshot audio library. But the CMakeList is not using it but trying to find it on the system!
cmake -DLIBOPENSHOT_AUDIO_DIR=../../libopenshot-audio/build/dist ..
I'm not sure how to create a "Pull request"... hope to learn that soon.
In the meantime, to fix that issue, line 180 of CMakeLists.txt
find_package(OpenShotAudio 0.3.0...0.3.3 REQUIRED)
should IMHO be modified like this:
find_package(OpenShotAudio 0.3.0...0.3.3 HINTS ${LIBOPENSHOT_AUDIO_DIR} REQUIRED)
The text was updated successfully, but these errors were encountered: