Seperate dali-adaptor & dali-adaptor-uv packages
[platform/core/uifw/dali-adaptor.git] / build / tizen / configure.ac
1 #
2 # Copyright (c) 2015 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_ARG_WITH([libuv],
22               [AC_HELP_STRING([--with-libuv],
23                               [Path that contains libuv headers. Setting this configures DALi to work with LibUV mainloop used in Node.JS.
24                               For example /usr/tmp/downloads/node/deps/uv/include/ ])],
25               [with_libuv=$withval],
26               [with_libuv=no])
27
28 AC_ARG_ENABLE([feedback],
29               [AC_HELP_STRING([ --enable-feedback],
30                               [Enable feedback plugin])],
31               [enable_feedback=yes],
32               [enable_feedback=no])
33
34 AC_CONFIG_SUBDIRS(adaptor)
35 if test "x$with_libuv" != "xno"; then
36   # build dali-adaptor & dali-adaptor-uv
37   AC_CONFIG_SUBDIRS(adaptor-uv)
38 fi
39 if test "x$enable_feedback" = "xyes"; then
40   # build dali-adaptor & dali-adaptor-uv & plugins
41   AC_CONFIG_SUBDIRS(plugins)
42 fi
43 #else
44   # build dali-adaptor only
45
46 AC_CONFIG_FILES(Makefile)
47
48 AC_OUTPUT