Home | History | Annotate | Download | only in sample
      1 noinst_LTLIBRARIES = \
      2     $(NULL)
      3 
      4 if ENABLE_IA_AIQ
      5 noinst_LTLIBRARIES += \
      6     libxcam_sample_smart.la \
      7     $(NULL)
      8 endif
      9 
     10 XCAMSMART_CXXFLAGS = $(XCAM_CXXFLAGS)
     11 XCAMSMART_LIBS = \
     12     $(NULL)
     13 
     14 if USE_LOCAL_ATOMISP
     15 XCAMSMART_CXXFLAGS += \
     16     -I$(top_srcdir)/ext/atomisp  \
     17     $(NULL)
     18 endif
     19 
     20 plugindir="$(libdir)/xcam/plugins/smart"
     21 
     22 if ENABLE_IA_AIQ
     23 libxcam_sample_smart_la_SOURCES = \
     24     sample_smart_analysis.cpp    \
     25     $(NULL)
     26 
     27 libxcam_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 
     34 libxcam_sample_smart_la_LIBADD = \
     35     $(XCAMSMART_LIBS)                      \
     36     $(top_builddir)/xcore/libxcam_core.la  \
     37     $(NULL)
     38 
     39 libxcam_sample_smart_la_LDFLAGS = \
     40     -module -avoid-version                 \
     41     $(top_builddir)/xcore/libxcam_core.la  \
     42     $(PTHREAD_LDFLAGS)                     \
     43     $(NULL)
     44 endif
     45 
     46 libxcam_sample_smart_la_LIBTOOLFLAGS = --tag=disable-static
     47