1lib_LTLIBRARIES = libxcam_soft.la 2 3XCAMSOFT_CXXFLAGS = \ 4 $(LIBCL_CFLAGS) \ 5 -I$(top_srcdir)/xcore \ 6 -I$(top_srcdir)/modules \ 7 $(NULL) 8 9XCAMSOFT_LIBS = 10 11xcam_soft_sources = \ 12 soft_handler.cpp \ 13 soft_video_buf_allocator.cpp \ 14 soft_worker.cpp \ 15 soft_blender_tasks_priv.cpp \ 16 soft_blender.cpp \ 17 soft_geo_mapper.cpp \ 18 soft_geo_tasks_priv.cpp \ 19 soft_copy_task.cpp \ 20 soft_stitcher.cpp \ 21 $(NULL) 22 23if HAVE_OPENCV 24XCAMSOFT_CXXFLAGS += $(OPENCV_CFLAGS) 25 26XCAMSOFT_LIBS += $(OPENCV_LIBS) 27 28xcam_soft_sources += \ 29 cv_capi_feature_match.cpp \ 30 $(NULL) 31 32endif 33 34libxcam_soft_la_SOURCES = \ 35 $(xcam_soft_sources) \ 36 $(NULL) 37 38libxcam_soft_la_CXXFLAGS = \ 39 $(XCAMSOFT_CXXFLAGS) \ 40 $(XCAM_CXXFLAGS) \ 41 $(NULL) 42 43libxcam_soft_la_LIBADD = \ 44 $(top_builddir)/xcore/libxcam_core.la \ 45 $(XCAMSOFT_LIBS) \ 46 $(NULL) 47 48libxcam_soft_la_LDFLAGS = \ 49 $(XCAM_LT_LDFLAGS) \ 50 $(PTHREAD_LDFLAGS) \ 51 $(NULL) 52 53libxcam_softincludedir = $(includedir)/xcam/soft 54 55nobase_libxcam_softinclude_HEADERS = \ 56 soft_handler.h \ 57 soft_video_buf_allocator.h \ 58 soft_worker.h \ 59 soft_image.h \ 60 soft_blender.h \ 61 soft_geo_mapper.h \ 62 soft_copy_task.h \ 63 soft_stitcher.h \ 64 $(NULL) 65 66noinst_HEADERS = \ 67 soft_blender_tasks_priv.h \ 68 soft_geo_tasks_priv.h \ 69 $(NULL) 70 71if HAVE_OPENCV 72noinst_HEADERS += cv_capi_feature_match.h 73endif 74 75libxcam_soft_la_LIBTOOLFLAGS = --tag=disable-static 76