lemon/Makefile.am
changeset 567 3314f58e7b25
parent 550 20e3acc1a757
child 594 d657c71db7db
     1.1 --- a/lemon/Makefile.am	Thu Apr 02 19:29:56 2009 +0200
     1.2 +++ b/lemon/Makefile.am	Wed Apr 01 22:58:58 2009 +0200
     1.3 @@ -12,7 +12,7 @@
     1.4  	lemon/color.cc \
     1.5  	lemon/lp_base.cc \
     1.6  	lemon/lp_skeleton.cc \
     1.7 -        lemon/random.cc \
     1.8 +	lemon/random.cc \
     1.9  	lemon/bits/windows.cc
    1.10  
    1.11  
    1.12 @@ -21,13 +21,15 @@
    1.13  	$(GLPK_CFLAGS) \
    1.14  	$(CPLEX_CFLAGS) \
    1.15  	$(SOPLEX_CXXFLAGS) \
    1.16 -	$(CLP_CXXFLAGS)
    1.17 +	$(CLP_CXXFLAGS) \
    1.18 +	$(CBC_CXXFLAGS)
    1.19  
    1.20  lemon_libemon_la_LDFLAGS = \
    1.21  	$(GLPK_LIBS) \
    1.22  	$(CPLEX_LIBS) \
    1.23  	$(SOPLEX_LIBS) \
    1.24 -	$(CLP_LIBS)
    1.25 +	$(CLP_LIBS) \
    1.26 +	$(CBC_LIBS)
    1.27  
    1.28  if HAVE_GLPK
    1.29  lemon_libemon_la_SOURCES += lemon/glpk.cc
    1.30 @@ -45,6 +47,10 @@
    1.31  lemon_libemon_la_SOURCES += lemon/clp.cc
    1.32  endif
    1.33  
    1.34 +if HAVE_CBC
    1.35 +lemon_libemon_la_SOURCES += lemon/cbc.cc
    1.36 +endif
    1.37 +
    1.38  lemon_HEADERS += \
    1.39  	lemon/adaptors.h \
    1.40  	lemon/arg_parser.h \