Merge "Reconfigured dynamics test cases" 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 DYNAMICS_SUPPORT=
78 if test "x$dynamics_support" = "xyes"; then
79   DALI_CFLAGS="$DALI_CFLAGS -DDYNAMICS_SUPPORT"
80   DYNAMICS_SUPPORT=-DDYNAMICS_SUPPORT
81 fi
82 AC_SUBST(DYNAMICS_SUPPORT)
83
84 # Must come after Emscripten feature test
85 if test "x$enable_backtrace" = "xyes"; then
86   DALI_CFLAGS="$DALI_CFLAGS -DBACKTRACE_ENABLED"
87 fi
88
89 AM_CONDITIONAL([DYNAMICS_SUPPORT], [test x$dynamics_support = xyes])
90
91 AC_ARG_ENABLE([performance-monitor],
92               [AC_HELP_STRING([--enable-performance-monitor],
93                               [Enables the performance monitor output])],
94               [enable_performance_monitor=$enableval],
95               [enable_performance_monitor=no])
96
97 if test "x$enable_performance_monitor" = "xyes"; then
98   DALI_CFLAGS="$DALI_CFLAGS -DPERFORMANCE_MONITOR_ENABLED"
99 fi
100
101 if test x$DALI_DATA_RW_DIR != x; then
102   dataReadWriteDir=$DALI_DATA_RW_DIR
103 else
104   dataReadWriteDir=${prefix}/share/dali/
105 fi
106
107 if test x$DALI_DATA_RO_DIR != x; then
108   dataReadOnlyDir=$DALI_DATA_RO_DIR
109 else
110   dataReadOnlyDir=${prefix}/share/dali/
111 fi
112
113 DALI_CFLAGS="$DALI_CFLAGS -I${includedir}"
114 DALI_LDFLAGS="-L${libdir}"
115
116 AC_SUBST(dataReadWriteDir)
117 AC_SUBST(dataReadOnlyDir)
118 AC_SUBST(DALI_CFLAGS)
119 AC_SUBST(DALI_LDFLAGS)
120
121 # Specify the include directory for development headers
122 devincludepath=${includedir}
123 AC_SUBST(devincludepath)
124
125 AC_CONFIG_FILES([
126  Makefile
127  dali-core/Makefile
128  dali-core.pc
129  ../../automated-tests/CMakeLists.txt
130 ])
131
132 AC_OUTPUT
133
134 echo "
135 Configuration
136 -------------
137   Prefix:                           $prefix
138   Debug Build:                      $enable_debug
139   Performance Monitor:              $enable_performance_monitor
140   Data Dir (Read/Write):            $dataReadWriteDir
141   Data Dir (Read Only):             $dataReadOnlyDir
142   Emscripten:                       $enable_emscripten
143   Backtrace:                        $enable_backtrace
144 "