X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=build%2Ftizen%2Fconfigure.ac;h=26be3497ff9b7899229c134b1c9e3e5bc38a4ec5;hp=006e1926f95270341d3911cbc0f009e6b88d82b1;hb=97f8d1fe9947ec36ab2aea880adc3d78f5653a9b;hpb=d04c5bdbb95cc98f90848c7a98b0b2804df6e5b8 diff --git a/build/tizen/configure.ac b/build/tizen/configure.ac old mode 100644 new mode 100755 index 006e192..26be349 --- a/build/tizen/configure.ac +++ b/build/tizen/configure.ac @@ -1,5 +1,5 @@ # -# Copyright (c) 2014 Samsung Electronics Co., Ltd. +# Copyright (c) 2016 Samsung Electronics Co., Ltd. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -28,8 +28,6 @@ LT_INIT DALI_TOOLKIT_VERSION=dali_version AC_SUBST(DALI_TOOLKIT_VERSION) -PKG_CHECK_MODULES(DALICORE, dali-core) -PKG_CHECK_MODULES(DALI, dali) DALI_TOOLKIT_CFLAGS=-DPLATFORM_TIZEN @@ -45,6 +43,12 @@ AC_ARG_ENABLE([debug], [enable_debug=$enableval], [enable_debug=no]) +AC_ARG_ENABLE([i18n], + [AC_HELP_STRING([--enable-i18n], + [Turns on internationalisation])], + [enable_i18n=$enableval], + [enable_i18n=no]) + # option to build JavaScript plugin # configure settings and output # --enable-javascript // enable_javascript = yes @@ -54,10 +58,40 @@ AC_ARG_ENABLE([debug], # no setting // enable_javascript = automatic ( enable if v8 present) AC_ARG_ENABLE([javascript], [AC_HELP_STRING([--enable-javascript], - [Enable JavaScript plugin])] , - [enable_javascript=$enableval], - [enable_javascript=automatic]) + [Enable JavaScript plugin])], + [enable_javascript=$enableval], + [enable_javascript=automatic]) + +# option to build C# plugin +# configure settings and output +# --enable-csharp // enable_csharp = yes +# --enable-csharp=yes // enable_csharp = yes +# --enable-csharp=no // enable_csharp = no +# no setting // enable_csharp = no +AC_ARG_ENABLE([csharp], + [AC_HELP_STRING([--enable-csharp], + [Enable csharp plugin])], + [enable_csharp=$enableval], + [enable_csharp=automatic]) +AC_ARG_ENABLE([cxx03_abi], + [AC_HELP_STRING([--enable-cxx03-abi], + [Specify abi for the build])], + [enable_cxx03_abi=$enableval], + [enable_cxx03_abi=no]) + +AC_ARG_ENABLE([rename_so], + [AC_HELP_STRING([--enable-rename-so], + [Specify whether so file is renamed or not])], + [enable_rename_so=$enableval], + [enable_rename_so=yes]) + +AM_CONDITIONAL([ENABLE_CXX03_ABI], [test x$enable_cxx03_abi = xyes]) +AM_CONDITIONAL([ENABLE_RENAME_SO], [test x$enable_rename_so = xyes]) + +if test "x$enable_cxx03_abi" = "xyes"; then + DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -D_GLIBCXX_USE_CXX11_ABI=0" +fi if test "x$enable_debug" = "xyes"; then DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDEBUG_ENABLED" @@ -67,15 +101,28 @@ if test "x$enable_debug" = "xno" -a "x$enable_exportall" = "xno"; then DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -fvisibility=hidden -DHIDE_DALI_INTERNALS" fi - - +if test "x$enable_i18n" = "xyes"; then + DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDGETTEXT_ENABLED " +fi # Tizen Profile options AC_ARG_ENABLE([profile], - [AC_HELP_STRING([--enable-profile=COMMON,MOBILE,WEARABLE,TV], + [AC_HELP_STRING([--enable-profile=UBUNTU,TIZEN], [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" != "xTIZEN"; 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}/ @@ -89,9 +136,14 @@ 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_BASE_DIR=../../../dali-toolkit/styles +STYLE_DIR=$STYLE_BASE_DIR/$dali_style + +AC_SUBST(STYLE_BASE_DIR) +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 ] ) @@ -120,6 +172,9 @@ fi #set a variable for the makefile to force compile the JAvaSplugin AM_CONDITIONAL([ENABLE_JAVASCRIPT_PLUGIN], [test x$build_javascript_plugin = xyes]) +# Platforms with highp shader support can use vector based text +AM_CONDITIONAL([ENABLE_VECTOR_BASED_TEXT_RENDERING], [test x$dali_profile = xUBUNTU]) + AC_SUBST(dataReadWriteDir) AC_SUBST(dataReadOnlyDir) AC_SUBST(DALI_TOOLKIT_CFLAGS) @@ -136,15 +191,61 @@ DOXYGEN_ROOT_DIR=../../.. AC_SUBST(DOXYGEN_DOCS_DIR) AC_SUBST(DOXYGEN_ROOT_DIR) +# Enable csharp plugin +build_csharp_plugin=no +build_ruby_flag=no +if test x$enable_csharp = xyes; then + [build_csharp_plugin=yes] + AC_MSG_NOTICE(Building DALi csharp plugin ...) + + PKG_CHECK_MODULES(DALIADAPTOR, dali-adaptor) + AC_PATH_PROG([SWIG], [swig]) + + # if gbs enable, then only use swig, without ruby or mcs + if test "x$dali_profile" = "xUBUNTU"; then + [build_ruby_flag=yes] + AC_PATH_PROG([RUBY], [ruby]) + AC_PATH_PROGS([MCS], [mcs gmcs gmcs2]) + AC_MSG_NOTICE(swig ruby mcs working ...) + else + [build_ruby_flag=no] + AC_PATH_PROG([RUBY], [ruby]) + #AC_PATH_PROGS([MCS], [mcs gmcs gmcs2]) + #AC_MSG_NOTICE(swig only working ...) + fi + + # Set varaibles for dali-toolkit + DALITOOLKIT_CFLAGS="-I${prefix}/include -I${prefix}/include/dali-toolkit" + DALITOOLKIT_LIBS="-L${prefix}/lib -ldali-toolkit -ldali-core" + AC_SUBST(DALITOOLKIT_CFLAGS) + AC_SUBST(DALITOOLKIT_LIBS) +fi + +if test "x$enable_cxx03_abi" = "xyes"; then +PKG_CHECK_MODULES(DALICORE, dali-core-cxx03) +else +PKG_CHECK_MODULES(DALICORE, dali-core) +fi + +#set a variable for the makefile to force compile the csharp plugin +AM_CONDITIONAL([ENABLE_CSHARP_PLUGIN], [test x$build_csharp_plugin = xyes]) +AM_CONDITIONAL([ENABLE_RUBY_FLAG], [test x$build_ruby_flag = xyes]) + AC_CONFIG_FILES([ Makefile dali-toolkit/Makefile - plugins/Makefile - dali-toolkit.pc + plugins/javascript/Makefile + plugins/csharp/Makefile docs/Makefile docs/dali.doxy + docs-internal/dali-internal.doxy + ../../automated-tests/CMakeLists.txt ]) +if test "x$enable_cxx03_abi" = "xno"; then +AC_CONFIG_FILES([dali-toolkit.pc]) +fi + AC_OUTPUT echo " @@ -153,7 +254,11 @@ Configuration Prefix: $prefix Debug Build: $enable_debug JavaScript support (V8 required) $build_javascript_plugin + CSharp support $build_csharp_plugin Profile: $dali_profile Data Dir (Read/Write): $dataReadWriteDir Data Dir (Read Only): $dataReadOnlyDir + Style Dir: $STYLE_DIR + Style: $dali_style + i18n: $enable_i18n "