Merge "API to allow Actor to insert child at a specific index" into tizen
[platform/core/uifw/dali-core.git] / build / tizen / configure.ac
1 # Copyright (c) 2014 Samsung Electronics Co., Ltd.
2
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6
7 # http://www.apache.org/licenses/LICENSE-2.0
8
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15
16 m4_define([dali_version],[0.1.1])
17 AC_INIT([dali], [dali_version])
18 AM_INIT_AUTOMAKE([-Wall foreign])
19
20 AC_PROG_CXX
21 AC_PROG_LIBTOOL
22 AC_PROG_MKDIR_P
23
24 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
25
26 LT_INIT
27
28 DALI_VERSION=dali_version
29 AC_SUBST(DALI_VERSION)
30
31 DALI_CFLAGS=-DPLATFORM_TIZEN
32
33 AC_ARG_ENABLE(exportall,
34               [AC_HELP_STRING([--enable-exportall],
35                               [enables the exporting of all the symbols in the library])],
36               [enable_exportall=yes],
37               [enable_exportall=no])
38
39 AC_ARG_ENABLE([debug],
40               [AC_HELP_STRING([--enable-debug],
41                               [Turns on debugging])],
42               [enable_debug=$enableval],
43               [enable_debug=no])
44
45 AC_ARG_ENABLE([emscripten],
46               [AC_HELP_STRING([--enable-emscripten],
47                               [Emscripten builds])],
48               [enable_emscripten=$enableval],
49               [enable_emscripten=no])
50
51 AC_ARG_ENABLE([backtrace],
52               [AC_HELP_STRING([--enable-backtrace],
53                               [Backtrace for exceptions])],
54               [enable_backtrace=$enableval],
55               [enable_backtrace=yes])
56
57 AC_ARG_ENABLE([dynamics],
58               [AC_HELP_STRING([--enable-dynamics],
59                               [Builds with dynamics support])],
60               [dynamics_support=$enableval],
61               [dynamics_support=no])
62
63 if test "x$enable_debug" = "xyes"; then
64   DALI_CFLAGS="$DALI_CFLAGS -DDEBUG_ENABLED"
65 fi
66
67 if test "x$enable_debug" = "xno" -a "x$enable_exportall" = "xno"; then
68   DALI_CFLAGS="$DALI_CFLAGS -fvisibility=hidden -DHIDE_DALI_INTERNALS"
69 fi
70
71 if test "x$enable_emscripten" = "xyes"; then
72   DALI_CFLAGS="$DALI_CFLAGS -DEMSCRIPTEN -std=c++11"
73   # Automatically turn off backtrace support
74   enable_backtrace="no"
75 fi
76
77 if test "x$dynamics_support" = "xyes"; then
78   DALI_CFLAGS="$DALI_CFLAGS -DDYNAMICS_SUPPORT"
79 fi
80
81 # Must come after Emscripten feature test
82 if test "x$enable_backtrace" = "xyes"; then
83   DALI_CFLAGS="$DALI_CFLAGS -DBACKTRACE_ENABLED"
84 fi
85
86 AM_CONDITIONAL([DYNAMICS_SUPPORT], [test x$dynamics_support = xyes])
87
88 AC_ARG_ENABLE([performance-monitor],
89               [AC_HELP_STRING([--enable-performance-monitor],
90                               [Enables the performance monitor output])],
91               [enable_performance_monitor=$enableval],
92               [enable_performance_monitor=no])
93
94 if test "x$enable_performance_monitor" = "xyes"; then
95   DALI_CFLAGS="$DALI_CFLAGS -DPERFORMANCE_MONITOR_ENABLED"
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_CFLAGS="$DALI_CFLAGS -I${includedir}"
111 DALI_LDFLAGS="-L${libdir}"
112
113 AC_SUBST(dataReadWriteDir)
114 AC_SUBST(dataReadOnlyDir)
115 AC_SUBST(DALI_CFLAGS)
116 AC_SUBST(DALI_LDFLAGS)
117
118 # Specify the include directory for development headers
119 devincludepath=${includedir}
120 AC_SUBST(devincludepath)
121
122 AC_CONFIG_FILES([
123  Makefile
124  dali-core/Makefile
125  dali-core.pc
126 ])
127
128 AC_OUTPUT
129
130 echo "
131 Configuration
132 -------------
133   Prefix:                           $prefix
134   Debug Build:                      $enable_debug
135   Performance Monitor:              $enable_performance_monitor
136   Data Dir (Read/Write):            $dataReadWriteDir
137   Data Dir (Read Only):             $dataReadOnlyDir
138   Emscripten:                       $enable_emscripten
139   Backtrace:                        $enable_backtrace
140 "