Changeset 642
- Timestamp:
- Feb 14, 2011, 2:26:23 AM (10 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r630 r642 1 1 2 SUBDIRS = src deushax monsterz tools art gfx2 SUBDIRS = src test deushax monsterz tools art gfx 3 3 DIST_SUBDIRS = $(SUBDIRS) maps 4 4 -
trunk/configure.ac
r638 r642 44 44 AC_ARG_ENABLE(release, 45 45 [ --enable-release build final release of the game (default no)]) 46 47 AC_ARG_ENABLE(cppunit, 48 [ --enable-cppunit use cppunit for unit tests (autodetected)]) 46 49 47 50 AC_CHECK_HEADERS(stdio.h stdarg.h inttypes.h endian.h stdint.h getopt.h) … … 115 118 AM_CONDITIONAL(USE_GTKGL, test "${ac_cv_my_have_gtkgl}" != "no") 116 119 120 121 dnl Use cppunit for unit tests? 122 PKG_CHECK_MODULES(CPPUNIT, cppunit, [CPPUNIT="yes"], [CPPUNIT="no"]) 123 AM_CONDITIONAL(USE_CPPUNIT, test "$CPPUNIT" = "yes") 124 125 117 126 # How to use the Lol Engine inside this tree 118 127 LOL_CFLAGS="$LOL_CFLAGS -I \$(top_srcdir)/src $SDL_CFLAGS" … … 130 139 Makefile 131 140 src/Makefile 141 test/Makefile 132 142 monsterz/Makefile 133 143 deushax/Makefile
Note: See TracChangeset
for help on using the changeset viewer.