COIN-OR::LEMON - Graph Library

source: lemon/lemon/Makefile.am @ 722:c5dc4d3124aa

Last change on this file since 722:c5dc4d3124aa was 714:d10545c08e61, checked in by Alpar Juttner <alpar@…>, 15 years ago

Add lemon/config.h.cmake to the tarball

File size: 2.6 KB
RevLine 
[1]1EXTRA_DIST += \
[146]2        lemon/lemon.pc.in \
[714]3        lemon/CMakeLists.txt \
4        lemon/config.h.cmake
[1]5
6pkgconfig_DATA += lemon/lemon.pc
7
8lib_LTLIBRARIES += lemon/libemon.la
9
[7]10lemon_libemon_la_SOURCES = \
[463]11        lemon/arg_parser.cc \
12        lemon/base.cc \
13        lemon/color.cc \
[481]14        lemon/lp_base.cc \
15        lemon/lp_skeleton.cc \
[614]16        lemon/random.cc \
[511]17        lemon/bits/windows.cc
[10]18
[686]19nodist_lemon_HEADERS = lemon/config.h   
[714]20
[481]21lemon_libemon_la_CXXFLAGS = \
[597]22        $(AM_CXXFLAGS) \
[481]23        $(GLPK_CFLAGS) \
24        $(CPLEX_CFLAGS) \
[482]25        $(SOPLEX_CXXFLAGS) \
[614]26        $(CLP_CXXFLAGS) \
27        $(CBC_CXXFLAGS)
[1]28
[481]29lemon_libemon_la_LDFLAGS = \
30        $(GLPK_LIBS) \
31        $(CPLEX_LIBS) \
[482]32        $(SOPLEX_LIBS) \
[614]33        $(CLP_LIBS) \
34        $(CBC_LIBS)
[481]35
36if HAVE_GLPK
[484]37lemon_libemon_la_SOURCES += lemon/glpk.cc
[481]38endif
39
40if HAVE_CPLEX
[484]41lemon_libemon_la_SOURCES += lemon/cplex.cc
[481]42endif
43
44if HAVE_SOPLEX
[484]45lemon_libemon_la_SOURCES += lemon/soplex.cc
[481]46endif
[259]47
[482]48if HAVE_CLP
[484]49lemon_libemon_la_SOURCES += lemon/clp.cc
[482]50endif
[220]51
[614]52if HAVE_CBC
53lemon_libemon_la_SOURCES += lemon/cbc.cc
54endif
[543]55
[2]56lemon_HEADERS += \
[432]57        lemon/adaptors.h \
[463]58        lemon/arg_parser.h \
[108]59        lemon/assert.h \
[463]60        lemon/bfs.h \
61        lemon/bin_heap.h \
[677]62        lemon/cbc.h \
[463]63        lemon/circulation.h \
[484]64        lemon/clp.h \
[463]65        lemon/color.h \
[166]66        lemon/concept_check.h \
[569]67        lemon/connectivity.h \
[463]68        lemon/counter.h \
[220]69        lemon/core.h \
[484]70        lemon/cplex.h \
[463]71        lemon/dfs.h \
72        lemon/dijkstra.h \
73        lemon/dim2.h \
74        lemon/dimacs.h \
[491]75        lemon/edge_set.h \
[394]76        lemon/elevator.h \
[66]77        lemon/error.h \
[567]78        lemon/euler.h \
[365]79        lemon/full_graph.h \
[484]80        lemon/glpk.h \
[592]81        lemon/gomory_hu.h \
[463]82        lemon/graph_to_eps.h \
83        lemon/grid_graph.h \
[376]84        lemon/hypercube_graph.h \
[103]85        lemon/kruskal.h \
[425]86        lemon/hao_orlin.h \
[127]87        lemon/lgf_reader.h \
[195]88        lemon/lgf_writer.h \
[66]89        lemon/list_graph.h \
[481]90        lemon/lp.h \
91        lemon/lp_base.h \
92        lemon/lp_skeleton.h \
[482]93        lemon/list_graph.h \
[58]94        lemon/maps.h \
[641]95        lemon/matching.h \
[68]96        lemon/math.h \
[522]97        lemon/min_cost_arborescence.h \
[360]98        lemon/nauty_reader.h \
[648]99        lemon/network_simplex.h \
[96]100        lemon/path.h \
[404]101        lemon/preflow.h \
[464]102        lemon/radix_sort.h \
[463]103        lemon/random.h \
[109]104        lemon/smart_graph.h \
[484]105        lemon/soplex.h \
[357]106        lemon/suurballe.h \
[463]107        lemon/time_measure.h \
108        lemon/tolerance.h \
[511]109        lemon/unionfind.h \
110        lemon/bits/windows.h
[1]111
[7]112bits_HEADERS += \
[57]113        lemon/bits/alteration_notifier.h \
114        lemon/bits/array_map.h \
[463]115        lemon/bits/bezier.h \
[57]116        lemon/bits/default_map.h \
[491]117        lemon/bits/edge_set_extender.h \
[463]118        lemon/bits/enable_if.h \
[430]119        lemon/bits/graph_adaptor_extender.h \
[58]120        lemon/bits/graph_extender.h \
[57]121        lemon/bits/map_extender.h \
[100]122        lemon/bits/path_dump.h \
[482]123        lemon/bits/solver_bits.h \
[58]124        lemon/bits/traits.h \
[430]125        lemon/bits/variant.h \
[57]126        lemon/bits/vector_map.h
[1]127
[58]128concept_HEADERS += \
[57]129        lemon/concepts/digraph.h \
130        lemon/concepts/graph.h \
[195]131        lemon/concepts/graph_components.h \
[100]132        lemon/concepts/heap.h \
[58]133        lemon/concepts/maps.h \
[195]134        lemon/concepts/path.h
Note: See TracBrowser for help on using the repository browser.