removed checking of the window system because wayland is default.
[platform/core/uifw/e-tizen-testcase.git] / configure.ac
1 # Process this file with autoconf to produce a configure script.
2 dnl Process this file with autoconf to produce a configure script.
3
4 # get rid of that stupid cache mechanism
5 rm -f config.cache
6
7 AC_INIT([e_test_runner], [0.1.0], [enlightenment-devel@lists.sourceforge.net])
8 AC_PREREQ([2.52])
9 AC_CONFIG_SRCDIR([configure.ac])
10
11 AM_CONFIG_HEADER([config.h])
12
13 AM_INIT_AUTOMAKE([1.11])
14
15 GETTEXT_PACKAGE="e_test_runner"
16 AC_SUBST([GETTEXT_PACKAGE])
17 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE", [Gettext package])
18
19 AC_USE_SYSTEM_EXTENSIONS
20 AM_PROG_CC_STDC
21 AM_PROG_CC_C_O
22
23 requirements="\
24    elementary \
25    eldbus \
26    enlightenment \
27    capi-ui-efl-util \
28    wayland-client \
29    ecore-wayland \
30    tizen-extension-client"
31
32 PKG_CHECK_MODULES(E_TEST_RUNNER, [${requirements}])
33
34 AC_CONFIG_FILES([
35 Makefile
36 src/Makefile
37 ])
38
39 AC_OUTPUT