# # Copyright (c) 2014 Samsung Electronics Co., Ltd. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # m4_define([dali_version],[0.1.0]) AC_INIT([dali], [dali_version]) AM_INIT_AUTOMAKE([-Wall foreign]) AC_PROG_CXX AC_PROG_LIBTOOL m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) LT_INIT DALI_TOOLKIT_VERSION=dali_version AC_SUBST(DALI_TOOLKIT_VERSION) PKG_CHECK_MODULES(DALICORE, dali-core) PKG_CHECK_MODULES(DALI, dali) PKG_CHECK_MODULES(FRIBIDI, fribidi) DALI_TOOLKIT_CFLAGS=-DPLATFORM_TIZEN AC_ARG_ENABLE(exportall, [AC_HELP_STRING([--enable-exportall], [enables the exporting of all the symbols in the library])], [enable_exportall=yes], [enable_exportall=no]) AC_ARG_ENABLE([debug], [AC_HELP_STRING([--enable-debug], [Turns on debugging])], [enable_debug=$enableval], [enable_debug=no]) if test "x$enable_debug" = "xyes"; then DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -DDEBUG_ENABLED" fi if test "x$enable_debug" = "xno" -a "x$enable_exportall" = "xno"; then DALI_TOOLKIT_CFLAGS="$DALI_TOOLKIT_CFLAGS -fvisibility=hidden -DHIDE_DALI_INTERNALS" fi # Tizen Profile options AC_ARG_ENABLE([profile], [AC_HELP_STRING([--enable-profile=COMMON,MOBILE,LITE,WEARABLE,TV], [Select the variant of tizen])], [dali_profile=$enableval], [dali_profile=COMMON]) # Different platforms use either the full Toolkit or the basic version # The basic version excludes components under dali-toolkit/optional AM_CONDITIONAL([TOOLKIT_BASIC_VERSION], [test x$dali_profile = xLITE]) if test x$DALI_DATA_RW_DIR != x; then dataReadWriteDir=${DALI_DATA_RW_DIR}/ else dataReadWriteDir=${prefix}/share/dali/ fi if test x$DALI_DATA_RO_DIR != x; then dataReadOnlyDir=${DALI_DATA_RO_DIR}/ else dataReadOnlyDir=${prefix}/share/dali/ fi AC_SUBST(dataReadWriteDir) AC_SUBST(dataReadOnlyDir) AC_SUBST(DALI_TOOLKIT_CFLAGS) # Specify the include directory for development headers #devincludepath=${includedir}/dali/internal devincludepath=${includedir} AC_SUBST(devincludepath) # Doxygen paths DOXYGEN_DOCS_DIR=../../../docs DOXYGEN_ROOT_DIR=../../.. AC_SUBST(DOXYGEN_DOCS_DIR) AC_SUBST(DOXYGEN_ROOT_DIR) AC_CONFIG_FILES([ Makefile dali-toolkit/Makefile dali-toolkit.pc docs/Makefile docs/dali.doxy ]) AC_OUTPUT echo " Configuration ------------- Prefix: $prefix Debug Build: $enable_debug Profile: $dali_profile Data Dir (Read/Write): $dataReadWriteDir Data Dir (Read Only): $dataReadOnlyDir "