1noinst_LTLIBRARIES = \ 2 $(NULL) 3 4if ENABLE_IA_AIQ 5noinst_LTLIBRARIES += \ 6 libxcam_sample_smart.la \ 7 $(NULL) 8endif 9 10XCAMSMART_CXXFLAGS = $(XCAM_CXXFLAGS) 11XCAMSMART_LIBS = \ 12 $(NULL) 13 14if USE_LOCAL_ATOMISP 15XCAMSMART_CXXFLAGS += \ 16 -I$(top_srcdir)/ext/atomisp \ 17 $(NULL) 18endif 19 20plugindir="$(libdir)/xcam/plugins/smart" 21 22if ENABLE_IA_AIQ 23libxcam_sample_smart_la_SOURCES = \ 24 sample_smart_analysis.cpp \ 25 $(NULL) 26 27libxcam_sample_smart_la_CXXFLAGS = \ 28 $(GST_CFLAGS) $(XCAMSMART_CXXFLAGS) \ 29 -I$(top_srcdir)/xcore \ 30 -I$(top_srcdir)/modules/isp \ 31 -I$(top_srcdir)/plugins/smart \ 32 $(NULL) 33 34libxcam_sample_smart_la_LIBADD = \ 35 $(XCAMSMART_LIBS) \ 36 $(top_builddir)/xcore/libxcam_core.la \ 37 $(NULL) 38 39libxcam_sample_smart_la_LDFLAGS = \ 40 -module -avoid-version \ 41 $(top_builddir)/xcore/libxcam_core.la \ 42 $(PTHREAD_LDFLAGS) \ 43 $(NULL) 44endif 45 46libxcam_sample_smart_la_LIBTOOLFLAGS = --tag=disable-static 47