Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Makefile
autom4te.cache/
config.log
config.status
fastvideo-0.1.tar.gz
src/.deps/
src/Makefile
src/fvscreenshot
src/fvscreenshot-image_process.o
src/fvscreenshot-screenshot.o
src/fvscreenshot-video_process.o
src/fvsearch
src/fvsearch-image_process.o
src/fvsearch-search.o
src/fvsearch-video_process.o
src/fvtestimagecompare
src/fvtestimagecompare-image_process.o
src/fvtestimagecompare-test_image_compare.o
stamp-h1
Empty file added compile
Empty file.
Empty file added missing
Empty file.
3 changes: 3 additions & 0 deletions src/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
bin_PROGRAMS = fvsearch fvscreenshot fvtestimagecompare

EXTRA_DIST = $(bin_PROGRAMS)

fvtestimagecompare_SOURCES = test_image_compare.cpp image_process.cpp image_process.hpp
fvtestimagecompare_CPPFLAGS = $(X11_CFLAGS) $(FFMPEG_CFLAGS)
fvtestimagecompare_LDADD = $(BOOST_PROGRAM_OPTIONS_LIB) $(X11_LIBS)
Expand All @@ -11,3 +13,4 @@ fvsearch_LDADD = $(BOOST_PROGRAM_OPTIONS_LIB) $(X11_LIBS) $(FFMPEG_LIBS)
fvscreenshot_SOURCES = screenshot.cpp image_process.cpp video_process.cpp image_process.hpp video_process.hpp
fvscreenshot_CPPFLAGS = $(X11_CFLAGS) $(FFMPEG_CFLAGS)
fvscreenshot_LDADD = $(BOOST_PROGRAM_OPTIONS_LIB) $(X11_LIBS) $(FFMPEG_LIBS)

1 change: 1 addition & 0 deletions src/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
EXTRA_DIST = $(bin_PROGRAMS)
fvtestimagecompare_SOURCES = test_image_compare.cpp image_process.cpp image_process.hpp
fvtestimagecompare_CPPFLAGS = $(X11_CFLAGS) $(FFMPEG_CFLAGS)
fvtestimagecompare_LDADD = $(BOOST_PROGRAM_OPTIONS_LIB) $(X11_LIBS)
Expand Down