Merge "DALi Version 1.0.30" into tizen
[platform/core/uifw/dali-demo.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.0])
17 AC_INIT([dali], [dali_version])
18 AM_INIT_AUTOMAKE([-Wall foreign])
19
20 AC_PROG_CXX
21 AC_PROG_LIBTOOL
22
23 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
24
25 LT_INIT
26
27 DALI_VERSION=dali_version
28 AC_SUBST(DALI_VERSION)
29
30 PKG_CHECK_MODULES(DALI, dali)
31 PKG_CHECK_MODULES(DALI_TOOLKIT, dali-toolkit)
32
33 DALIDEMO_CFLAGS=-DPLATFORM_SLP
34
35 AC_ARG_ENABLE([debug],
36               [AC_HELP_STRING([--enable-debug],
37                               [Turns on debugging])],
38               [enable_debug=$enableval],
39               [enable_debug=no])
40
41 if test "x$enable_debug" = "xyes"; then
42   DALIDEMO_CFLAGS="$DALIDEMO_CFLAGS -DDEBUG_ENABLED"
43 fi
44
45 if test x$DALI_APP_DIR != x; then
46   appdatadir=$DALI_APP_DIR
47   exedir=${appdatadir}/bin/
48 else
49   appdatadir=${prefix}/share/com.samsung.dali-demo/
50   exedir=${prefix}/bin/
51 fi
52
53 AC_SUBST(datadir)
54 AC_SUBST(appdatadir)
55 AC_SUBST(exedir)
56 AC_SUBST(DALIDEMO_CFLAGS)
57
58 dnl **************************************************************************
59 dnl ** Set Debian install Prefix                                            **
60 dnl **************************************************************************
61 debian_prefix=${prefix#*/}
62 AC_SUBST(debian_prefix)
63
64 AC_CONFIG_FILES([
65   Makefile
66   demo/Makefile
67   examples/Makefile
68 ])
69
70
71 AC_OUTPUT
72
73 echo "
74 Configuration
75 -------------
76   Prefix:                           $prefix
77   Debug Build:                      $enable_debug
78   Application Data Dir:             $appdatadir
79   Application Exe Dir:              $exedir
80   DALIDEMO_CFLAGS:                  ${DALIDEMO_CFLAGS}
81 "