Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/ColladaPlugin/configure.ac @ 21

Last change on this file since 21 was 21, checked in by nicolasc, 16 years ago

added ogreode and Colladaplugin

File size: 906 bytes
Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.59)
5AC_INIT(Plugin_Collada, 0.0, philipp.hartl@bkf.at)
6AC_CONFIG_SRCDIR([src/OgreColladaDll.cpp])
7AC_CONFIG_HEADERS([config.h])
8
9AM_INIT_AUTOMAKE
10
11# Checks for programs.
12AC_PROG_CXX
13AC_PROG_INSTALL
14
15AC_PROG_LIBTOOL
16
17# Checks for libraries.
18
19PKG_CHECK_MODULES([OGRE], [OGRE], AC_SUBST(OGRE_PLUGINDIR,`pkg-config --variable plugindir OGRE`))
20PKG_CHECK_MODULES([CEGUI], [CEGUI])
21PKG_CHECK_MODULES([CEGUI_OGRE], [CEGUI-OGRE])
22PKG_CHECK_MODULES([XML2], [libxml-2.0])
23
24# Checks for header files.
25
26# Checks for typedefs, structures, and compiler characteristics.
27AC_TYPE_SIZE_T
28
29# Checks for library functions.
30
31AC_CONFIG_FILES([
32        Makefile
33        src/Makefile
34        include/Makefile
35        demo/Makefile
36        demo/src/Makefile
37        demo/include/Makefile
38        OGRE-Plugin_Collada.pc])
39AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.