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
if the version of ffmpeg is updated one would need to remember to also change the build function name and the required underscores are also ugly and hard to remember
which is also not ideal, especially given how different it currently is to build ffmpeg 2.6.2 and 2.6.2.1...
it would be more convenient (and something I will use to build glew) to specify the cmake function for the build step with a BUILD_FUNC argument in the PRO_${PRO} variable that is defined for each project
The text was updated successfully, but these errors were encountered:
there are times when it would be cleaner to specify a cmake function for the build step...
currently, a build step function has to match a proper naming format
where
cmdp
comes from the name of the project, with-
and.
replaced with_
which means that a build-step function for ffmpeg_2.6.2.cmake https://github.com/smanders/externpro/blob/18.01.1/projects/ffmpeg_2.6.2.cmake would need to be
build_ffmpeg_2_6_2()
not ideal -- and the reason I currently build multiple versions of ffmpeg from one build-step function https://github.com/smanders/externpro/blob/18.01.1/projects/ffmpeg.cmake#L36
it would be more convenient (and something I will use to build glew) to specify the cmake function for the build step with a
BUILD_FUNC
argument in thePRO_${PRO}
variable that is defined for each projectThe text was updated successfully, but these errors were encountered: