2 # Copyright (c) 2017 Samsung Electronics Co., Ltd.
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
8 # http://www.apache.org/licenses/LICENSE-2.0
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.
17 m4_define([dali_version],[0.1.0])
18 AC_INIT([dali], [dali_version])
19 AM_INIT_AUTOMAKE([-Wall foreign])
21 AC_ARG_ENABLE([feedback],
22 [AC_HELP_STRING([ --enable-feedback],
23 [Enable feedback plugin])],
24 [enable_feedback=yes],
27 AC_ARG_ENABLE([videoplayer],
28 [AC_HELP_STRING([ --enable-videoplayer],
29 [Enable video player plugin])],
30 [enable_videoplayer=yes],
31 [enable_videoplayer=no])
33 AC_CONFIG_SUBDIRS(adaptor)
35 if test "x$enable_feedback" = "xyes" || test "x$enable_videoplayer" = "xyes"; then
36 # build dali-adaptor & plugins
37 AC_CONFIG_SUBDIRS(plugins)
40 # build dali-adaptor only
42 AC_CONFIG_FILES(Makefile)