Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3377 in orxonox.OLD for orxonox/trunk/configure.ac


Ignore:
Timestamp:
Jan 10, 2005, 12:00:02 AM (21 years ago)
Author:
bensch
Message:

orxonox/trunk: Compiling-performance-update: SubPrjects will only be build on demand, by either compiling them inside their folders, or by
./configure —enable-sub-projects

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/configure.ac

    r3240 r3377  
    6969
    7070
     71### SubProject-enable
     72def_sdl_image=yes
     73AC_MSG_CHECKING([if the SubProjects should be built])
     74AC_ARG_ENABLE([sub-projects],
     75        AC_HELP_STRING( [--enable-sub-projects],
     76        [also builds the subProjects by default]), [def_sub_projects=yes])
     77if test "$def_sub_projects" = yes; then
     78  echo "yes"
     79fi
     80if test "$def_sub_projects" = no; then
     81  echo "no"
     82fi
     83AM_CONDITIONAL(SUB_PROJECTS, test x$def_sub_projects = xyes)
     84
    7185## PROGRAMM CHECKING
    7286# checking for Doxygen
     
    364378
    365379AC_CONFIG_FILES([Makefile
     380                 src/Makefile
     381                 src/importer/Makefile
    366382                 src/console/Makefile
    367                  src/gui/Makefile
    368                  src/Makefile
    369                  src/importer/Makefile])
     383                 src/gui/Makefile])
     384
    370385AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.