Ignore:
Timestamp:
2010-01-18T16:19:06+13:00 (14 years ago)
Author:
mdewsnip
Message:

Added AC_CONFIG_SUBDIRS lines for configuring the common-src and runtime-src directories automatically.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/gs2-core/configure.ac

    r21474 r21517  
    5757AM_CONDITIONAL(USE_SQLITE, test "$USE_SQLITE" = 1)
    5858
     59# Configure the common-src subdirectory
     60if test -d "$srcdir/common-src"; then
     61  AC_CONFIG_SUBDIRS([common-src])
     62fi
     63
     64# Configure the runtime-src subdirectory
     65if test -d "$srcdir/runtime-src"; then
     66  AC_CONFIG_SUBDIRS([runtime-src])
     67fi
     68
    5969# Generate the Makefiles for this package
    6070AC_OUTPUT(Makefile)
Note: See TracChangeset for help on using the changeset viewer.