Currently i'm compiling ffmpeg but need to have output dll in different name like avcodec-MyProg.dll.
what i need to do to have this result?
How to compile ffmpeg with suffix or preffix like avcodec-MyProg.dll?
-
- Posts: 4
- Joined: Mon Jul 30, 2018 8:46 am
Re: How to compile ffmpeg with suffix or preffix like avcodec-MyProg.dll?
I believe you need:
Code: Select all
./configure [...] --build-suffix=-MyProg [...]
'