]> git.jsancho.org Git - c-irrlicht.git/blob - configure.ac
Use structs with casting, without classes replication
[c-irrlicht.git] / configure.ac
1 AC_INIT([cirrlicht], [0.1], [jsf@jsancho.org])
2 AM_INIT_AUTOMAKE([-Wall -Werror subdir-objects])
3 AC_CONFIG_MACRO_DIRS([m4])
4 AM_PROG_AR
5 AC_PROG_CXX
6 LT_INIT
7
8 AC_CHECK_LIB(
9         [Irrlicht],
10         [createDevice],
11         [],
12         AC_MSG_ERROR([Irrlicht lib required])
13 )
14
15 AC_CONFIG_FILES([
16         Makefile
17 ])
18
19 AC_OUTPUT