X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=build%2Ftizen%2Fconfigure.ac;h=9378eedc5128f1059ea42dda60e356c3baee225c;hp=1e8c7258f353ac949b128166bec25a101e564721;hb=ae34cf6aef4b3b807bd1e099baa48230b6b32156;hpb=d9c164e4530e354cd14dc4a1a658070ba55e99b8 diff --git a/build/tizen/configure.ac b/build/tizen/configure.ac index 1e8c725..9378eed 100644 --- a/build/tizen/configure.ac +++ b/build/tizen/configure.ac @@ -62,7 +62,7 @@ AC_ARG_ENABLE([javascript], [AC_HELP_STRING([--enable-javascript], [Enable JavaScript plugin])] , [enable_javascript=$enableval], - [enable_javascript=no]) + [enable_javascript=automatic]) if test "x$enable_debug" = "xyes"; then @@ -79,10 +79,22 @@ fi # Tizen Profile options AC_ARG_ENABLE([profile], - [AC_HELP_STRING([--enable-profile=COMMON,MOBILE,WEARABLE,TV], + [AC_HELP_STRING([--enable-profile=UBUNTU,MOBILE,WEARABLE,TV], [Select the variant of tizen])], [dali_profile=$enableval], - [dali_profile=COMMON]) + [dali_profile=UBUNTU]) + +# Tizen Style Folder +AC_ARG_WITH(style, + [AC_HELP_STRING([--with-style], + [Select the style folder to use])], + [dali_style=$withval], + [dali_style=480x800]) + +# Ensure valid profile selected +if test "x$dali_profile" != "xUBUNTU" -a "x$dali_profile" != "xMOBILE" -a "x$dali_profile" != "xWEARABLE" -a "x$dali_profile" != "xTV" ; then + AC_MSG_ERROR([$enable_profile is an invalid profile]) +fi if test x$DALI_DATA_RW_DIR != x; then dataReadWriteDir=${DALI_DATA_RW_DIR}/ @@ -96,9 +108,13 @@ else dataReadOnlyDir=${prefix}/share/dali/ fi -DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDALI_PROFILE_${enable_profile}" -AM_CONDITIONAL([COMMON_PROFILE], [test x$enable_profile = xCOMMON]) -AM_CONDITIONAL([MOBILE_PROFILE], [test x$enable_profile = xMOBILE]) +DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDALI_PROFILE_${dali_profile}" + +# Style folder +STYLE_DIR=../../../dali-toolkit/styles +STYLE_DIR=$STYLE_DIR/$dali_style + +AC_SUBST(STYLE_DIR) # v8 version 4+ requires c++11 PKG_CHECK_MODULES(V8, v8 = 3.32.7, [ pkg_check_v8=yes ], [ pkg_check_v8=no ] ) @@ -163,4 +179,6 @@ Configuration Profile: $dali_profile Data Dir (Read/Write): $dataReadWriteDir Data Dir (Read Only): $dataReadOnlyDir + Style Dir $STYLE_DIR + Style $dali_style "