Last change
on this file since 23 was
21,
checked in by nicolasc, 17 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 | |
---|
4 | AC_PREREQ(2.59) |
---|
5 | AC_INIT(Plugin_Collada, 0.0, philipp.hartl@bkf.at) |
---|
6 | AC_CONFIG_SRCDIR([src/OgreColladaDll.cpp]) |
---|
7 | AC_CONFIG_HEADERS([config.h]) |
---|
8 | |
---|
9 | AM_INIT_AUTOMAKE |
---|
10 | |
---|
11 | # Checks for programs. |
---|
12 | AC_PROG_CXX |
---|
13 | AC_PROG_INSTALL |
---|
14 | |
---|
15 | AC_PROG_LIBTOOL |
---|
16 | |
---|
17 | # Checks for libraries. |
---|
18 | |
---|
19 | PKG_CHECK_MODULES([OGRE], [OGRE], AC_SUBST(OGRE_PLUGINDIR,`pkg-config --variable plugindir OGRE`)) |
---|
20 | PKG_CHECK_MODULES([CEGUI], [CEGUI]) |
---|
21 | PKG_CHECK_MODULES([CEGUI_OGRE], [CEGUI-OGRE]) |
---|
22 | PKG_CHECK_MODULES([XML2], [libxml-2.0]) |
---|
23 | |
---|
24 | # Checks for header files. |
---|
25 | |
---|
26 | # Checks for typedefs, structures, and compiler characteristics. |
---|
27 | AC_TYPE_SIZE_T |
---|
28 | |
---|
29 | # Checks for library functions. |
---|
30 | |
---|
31 | AC_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]) |
---|
39 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.