Changeset 1404:17c80cb3754b in lemon-0.x
- Timestamp:
- 05/05/05 17:34:43 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1866
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
config/misc.m4
r1370 r1404 27 27 AM_CONDITIONAL([WANT_DOCS], [test x"$enable_docs" != x"no"]) 28 28 ]) 29 30 AC_DEFUN([LX_ENABLE_GUI], 31 [ 32 AC_ARG_ENABLE([gui], 33 AS_HELP_STRING([--enable-gui], [build the GUI]) 34 AS_HELP_STRING([--disable-gui], [do not build the GUI @<:@default@:>@]), 35 [], [enable_gui=no]) 36 37 AC_MSG_CHECKING([whether to build the GUI]) 38 if test x"$enable_gui" != x"no"; then 39 AC_MSG_RESULT([yes]) 40 else 41 AC_MSG_RESULT([no]) 42 fi 43 if test x"$enable_gui" != x"no"; then 44 PKG_CHECK_MODULES([GTK], [libgnomecanvasmm-2.6 >= 2.6.0]) 45 fi 46 AM_CONDITIONAL([WANT_GUI], [test x"$enable_gui" != x"no"]) 47 ]) -
configure.ac
r1400 r1404 31 31 32 32 LX_ENABLE_DOCS 33 LX_ENABLE_GUI 33 34 34 35 dnl Checks for header files. … … 57 58 src/demo/Makefile 58 59 src/test/Makefile 60 src/gui/Makefile 61 src/gui/src/Makefile 59 62 ]) 60 63 … … 72 75 echo CPLEX support................. : $lx_cplex_found 73 76 echo 77 echo build GUI..................... : $enable_gui 78 echo 74 79 echo The packace will be installed in 75 80 echo -n ' ' -
src/Makefile.am
r934 r1404 1 SUBDIRS = lemon benchmark demo test 1 if WANT_GUI 2 MAYBE_GUI = gui 3 endif 4 SUBDIRS = lemon benchmark demo test $(MAYBE_GUI)
Note: See TracChangeset
for help on using the changeset viewer.