X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=build%2Ftizen%2Fconfigure.ac;h=c1858efe701755b342bd7c5ec6264c9f3dbc9e9e;hp=4c4afdaa4ba9704990a58eabfda00af45a898e5b;hb=5d49d819924da76f96f22845210abe89a7ade187;hpb=57869973578f6a0b0f836d396c7232ddb8302c6b diff --git a/build/tizen/configure.ac b/build/tizen/configure.ac index 4c4afda..c1858ef 100644 --- a/build/tizen/configure.ac +++ b/build/tizen/configure.ac @@ -46,14 +46,27 @@ AC_ARG_ENABLE([debug], [enable_debug=$enableval], [enable_debug=no]) +# option for JavaScript plugin +AC_ARG_ENABLE(javascript, + [AC_HELP_STRING([--enable-javascript], + [Enable JavaScript plugin])] , + [enable_javascript=yes], + [enable_javascript=no]) + if test "x$enable_debug" = "xyes"; then DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDEBUG_ENABLED" + DALI_SCRIPTV8_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDEBUG_ENABLED" fi if test "x$enable_debug" = "xno" -a "x$enable_exportall" = "xno"; then DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -fvisibility=hidden -DHIDE_DALI_INTERNALS" + DALI_SCRIPTV8_CFLAGS="$DALI_TOOLKIT_CFLAGS -fvisibility=hidden -DHIDE_DALI_INTERNALS" fi +#set a variable for the makefile to conditionally compile the plugin +AM_CONDITIONAL([ENABLE_JAVASCRIPT_PLUGIN], [test x$enable_javascript = xyes]) + + # Tizen Profile options AC_ARG_ENABLE([profile], [AC_HELP_STRING([--enable-profile=COMMON,MOBILE,LITE,WEARABLE,TV], @@ -76,6 +89,8 @@ fi AC_SUBST(dataReadWriteDir) AC_SUBST(dataReadOnlyDir) AC_SUBST(DALI_TOOLKIT_CFLAGS) +AC_SUBST(DALI_SCRIPTV8_CFLAGS) +AC_SUBST(DALI_SCRIPTV8_LIBS) # Specify the include directory for development headers #devincludepath=${includedir}/dali/internal @@ -91,6 +106,7 @@ AC_SUBST(DOXYGEN_ROOT_DIR) AC_CONFIG_FILES([ Makefile dali-toolkit/Makefile + plugins/Makefile dali-toolkit.pc docs/Makefile docs/dali.doxy @@ -103,6 +119,7 @@ Configuration ------------- Prefix: $prefix Debug Build: $enable_debug + JavaScript support (V8 required) $enable_javascript Profile: $dali_profile Data Dir (Read/Write): $dataReadWriteDir Data Dir (Read Only): $dataReadOnlyDir