diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-11-02 17:05:28 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-11-25 11:57:29 -0800 |
commit | ab81f24ad43bddf77ddd25cba86780c1c884996c (patch) | |
tree | 0ecac472ddd3a6a6f264d810a2a449473fb7b712 /configure | |
parent | 14abeaa43d021afdce9119d906891abe89c03b88 (diff) | |
download | ffmpeg-ab81f24ad43bddf77ddd25cba86780c1c884996c.tar.gz |
build: Integrate multilibrary examples into the build system
This includes moving libavformat/output-example to doc/examples/output.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1041,6 +1041,10 @@ COMPONENT_LIST=" protocols " +EXAMPLE_LIST=" + output_example +" + EXTERNAL_LIBRARY_LIST=" avisynth bzlib @@ -1102,6 +1106,7 @@ PROGRAM_LIST=" CONFIG_LIST=" $COMPONENT_LIST + $EXAMPLE_LIST $EXTERNAL_LIBRARY_LIST $HWACCEL_LIST $LIBRARY_LIST @@ -1944,6 +1949,9 @@ ocv_filter_deps="libopencv" scale_filter_deps="swscale" yadif_filter_deps="gpl" +# examples +output_example_deps="avcodec avformat avutil swscale" + # libraries avcodec_deps="avutil" avdevice_deps="avutil avcodec avformat" @@ -2002,7 +2010,7 @@ target_os_default=$(tolower $(uname -s)) host_os=$target_os_default # configurable options -enable $LIBRARY_LIST $PROGRAM_LIST +enable $EXAMPLE_LIST $LIBRARY_LIST $PROGRAM_LIST enable asm enable debug |