enable_ecoreWl2=yes,
enable_ecoreWl2=no)
+# Tizen Profile options
+AC_ARG_ENABLE([profile],
+ [AC_HELP_STRING([--enable-profile=COMMON,MOBILE,WEARABLE,TV,IVI,UBUNTU],
+ [Select the variant of tizen])],
+ [enable_profile=$enableval],
+ [enable_profile=UBUNTU])
+
AM_CONDITIONAL([TIZENBUILD], [test x$enable_tizenBuild = xyes])
AM_CONDITIONAL([ECOREWL2], [test x$enable_ecoreWl2 = xyes])
+AM_CONDITIONAL([WEARABLE_PROFILE], [test x$enable_profile = xWEARABLE])
PKG_PROG_PKG_CONFIG
# Checks for libraries. added for widget_viewer_dali binding only for tizen
libdali_csharp_binder_la_SOURCES = $(dali_csharp_binder_src_files)
endif
+if WEARABLE_PROFILE
+libdali_csharp_binder_la_SOURCES += \
+ $(dali_csharp_binder_src_files_watch)
+endif
+
libdali_csharp_binderdir = $(includedir)/dali-csharp-binder
libdali_csharp_binder_HEADERS = $(dali_csharp_binder_header_files)
-
src/input-method-context.cpp \
src/input-method-options.cpp \
src/animation.cpp \
- src/watch.cpp \
src/adaptor.cpp \
src/extents.cpp
src/input-method-options.cpp \
src/animation.cpp \
src/key-grab.cpp \
- src/watch.cpp \
src/widget_view.cpp \
src/widget_view_manager.cpp \
src/adaptor.cpp \
dali_csharp_binder_header_files = \
src/common.h
+dali_csharp_binder_src_files_tizen_watch = \
+ src/watch.cpp
# added for key grab binding only for tizen
%if 0%{?tizen_version_major} >= 5
%configure --enable-ecoreWl2=yes \
+%if "%{?profile}" != "mobile" && "%{?profile}" != "tv" && "%{?profile}" != "ivi" && "%{?profile}" != "common"
+ --enable-profile=WEARABLE \
+%endif
--enable-tizenBuild=yes
%else
%configure --enable-tizenBuild=yes
%endif
+
make %{?_smp_mflags}
##############################