[dali_1.1.32] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / build / tizen / configure.ac
1 #
2 # Copyright (c) 2014 Samsung Electronics Co., Ltd.
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 #
16
17 m4_define([dali_version],[0.1.0])
18 AC_INIT([dali], [dali_version])
19 AM_INIT_AUTOMAKE([-Wall foreign])
20
21 AC_PROG_CXX
22 AC_PROG_LIBTOOL
23
24 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
25
26 LT_INIT
27
28 DALI_TOOLKIT_VERSION=dali_version
29 AC_SUBST(DALI_TOOLKIT_VERSION)
30
31 PKG_CHECK_MODULES(DALICORE, dali-core)
32
33 DALI_TOOLKIT_CFLAGS=-DPLATFORM_TIZEN
34
35 AC_ARG_ENABLE(exportall,
36               [AC_HELP_STRING([--enable-exportall],
37                               [enables the exporting of all the symbols in the library])],
38               [enable_exportall=yes],
39               [enable_exportall=no])
40
41 AC_ARG_ENABLE([debug],
42               [AC_HELP_STRING([--enable-debug],
43                               [Turns on debugging])],
44               [enable_debug=$enableval],
45               [enable_debug=no])
46
47 AC_ARG_ENABLE([i18n],
48               [AC_HELP_STRING([--enable-i18n],
49                               [Turns on internationalisation])],
50               [enable_i18n=$enableval],
51               [enable_i18n=no])
52
53 # option to build JavaScript plugin
54 # configure settings and output
55 # --enable-javascript        // enable_javascript = yes
56 # --enable-javascript=yes    // enable_javascript = yes
57 # --enable-javascript=no     // enable_javascript = no
58 # --disable-javascript       // enable_javascript = no
59 #  no setting                // enable_javascript = automatic ( enable if v8 present)
60 AC_ARG_ENABLE([javascript],
61               [AC_HELP_STRING([--enable-javascript],
62                [Enable JavaScript plugin])] ,
63                [enable_javascript=$enableval],
64                [enable_javascript=automatic])
65
66
67 if test "x$enable_debug" = "xyes"; then
68   DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDEBUG_ENABLED"
69 fi
70
71 if test "x$enable_debug" = "xno" -a "x$enable_exportall" = "xno"; then
72   DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -fvisibility=hidden -DHIDE_DALI_INTERNALS"
73 fi
74
75 if test "x$enable_i18n" = "xyes"; then
76   DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDGETTEXT_ENABLED "
77 fi
78
79 # Tizen Profile options
80 AC_ARG_ENABLE([profile],
81               [AC_HELP_STRING([--enable-profile=UBUNTU,MOBILE,WEARABLE,TV],
82                             [Select the variant of tizen])],
83               [dali_profile=$enableval],
84               [dali_profile=UBUNTU])
85
86 # Tizen Style Folder
87 AC_ARG_WITH(style,
88               [AC_HELP_STRING([--with-style],
89                             [Select the style folder to use])],
90               [dali_style=$withval],
91               [dali_style=480x800])
92
93 # Ensure valid profile selected
94 if test "x$dali_profile" != "xUBUNTU" -a "x$dali_profile" != "xMOBILE" -a "x$dali_profile" != "xWEARABLE" -a "x$dali_profile" != "xTV" ; then
95   AC_MSG_ERROR([$enable_profile is an invalid profile])
96 fi
97
98 if test x$DALI_DATA_RW_DIR != x; then
99   dataReadWriteDir=${DALI_DATA_RW_DIR}/
100 else
101   dataReadWriteDir=${prefix}/share/dali/
102 fi
103
104 if test x$DALI_DATA_RO_DIR != x; then
105   dataReadOnlyDir=${DALI_DATA_RO_DIR}/
106 else
107   dataReadOnlyDir=${prefix}/share/dali/
108 fi
109
110 DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDALI_PROFILE_${dali_profile}"
111
112 # Style folder
113 STYLE_DIR=../../../dali-toolkit/styles
114 STYLE_DIR=$STYLE_DIR/$dali_style
115
116 AC_SUBST(STYLE_DIR)
117
118 # v8 version 4+ requires c++11
119 PKG_CHECK_MODULES(V8, v8 = 3.32.7, [ pkg_check_v8=yes ],  [ pkg_check_v8=no  ] )
120
121 # Rules for building JavaScript plugin
122 # If enable_javascript=yes and v8 installed = build javascript
123 # If enable_javascript=automatic and v8 installed = build javascript
124 # If enable_javascript=yes and v8 not installed = throw an error
125 build_javascript_plugin=no
126 if test x$enable_javascript = xyes; then
127   if test x$pkg_check_v8 = xno; then
128     [build_javascript_plugin=no]
129     AC_MSG_ERROR("V8 not found or incorrect version installed")
130     AC_MSG_NOTICE("To disable building of JavaScript plugin use --disable-javascript")
131   else
132     [build_javascript_plugin=yes]
133     AC_MSG_NOTICE(V8 library found. Building DALi JavaScript plugin)
134   fi
135 fi
136 if test x$enable_javascript = xautomatic && test x$pkg_check_v8 = xyes; then
137   [build_javascript_plugin=yes]
138   AC_MSG_NOTICE( V8 library found. Automatic building of JavaScript plugin. Use  use --disable-javascript to disable)
139 fi
140
141
142 #set a variable for the makefile to force compile the JAvaSplugin
143 AM_CONDITIONAL([ENABLE_JAVASCRIPT_PLUGIN], [test x$build_javascript_plugin = xyes])
144
145 # Platforms with highp shader support can use vector based text
146 AM_CONDITIONAL([ENABLE_VECTOR_BASED_TEXT_RENDERING], [test x$dali_profile = xUBUNTU])
147
148 AC_SUBST(dataReadWriteDir)
149 AC_SUBST(dataReadOnlyDir)
150 AC_SUBST(DALI_TOOLKIT_CFLAGS)
151
152
153 # Specify the include directory for development headers
154 #devincludepath=${includedir}/dali/internal
155 devincludepath=${includedir}
156 AC_SUBST(devincludepath)
157
158 # Doxygen paths
159 DOXYGEN_DOCS_DIR=../../../docs
160 DOXYGEN_ROOT_DIR=../../..
161 AC_SUBST(DOXYGEN_DOCS_DIR)
162 AC_SUBST(DOXYGEN_ROOT_DIR)
163
164 AC_CONFIG_FILES([
165  Makefile
166  dali-toolkit/Makefile
167  plugins/Makefile
168  dali-toolkit.pc
169  docs/Makefile
170  docs/dali.doxy
171  ../../automated-tests/CMakeLists.txt
172 ])
173
174 AC_OUTPUT
175
176 echo "
177 Configuration
178 -------------
179   Prefix:                           $prefix
180   Debug Build:                      $enable_debug
181   JavaScript support (V8 required)  $build_javascript_plugin
182   Profile:                          $dali_profile
183   Data Dir (Read/Write):            $dataReadWriteDir
184   Data Dir (Read Only):             $dataReadOnlyDir
185   Style Dir:                        $STYLE_DIR
186   Style:                            $dali_style
187   i18n:                             $enable_i18n
188 "