gravatar
alpar (Alpar Juttner)
alpar@cs.elte.hu
Add lemon/config.h.cmake to the tarball
0 1 0
default
1 file changed with 3 insertions and 2 deletions:
↑ Collapse diff ↑
Ignore white space 768 line context
1 1
EXTRA_DIST += \
2 2
	lemon/lemon.pc.in \
3
	lemon/CMakeLists.txt
3
	lemon/CMakeLists.txt \
4
	lemon/config.h.cmake
4 5

	
5 6
pkgconfig_DATA += lemon/lemon.pc
6 7

	
7 8
lib_LTLIBRARIES += lemon/libemon.la
8 9

	
9 10
lemon_libemon_la_SOURCES = \
10 11
	lemon/arg_parser.cc \
11 12
	lemon/base.cc \
12 13
	lemon/color.cc \
13 14
	lemon/lp_base.cc \
14 15
	lemon/lp_skeleton.cc \
15 16
	lemon/random.cc \
16 17
	lemon/bits/windows.cc
17 18

	
18 19
nodist_lemon_HEADERS = lemon/config.h	
19
	
20

	
20 21
lemon_libemon_la_CXXFLAGS = \
21 22
	$(AM_CXXFLAGS) \
22 23
	$(GLPK_CFLAGS) \
23 24
	$(CPLEX_CFLAGS) \
24 25
	$(SOPLEX_CXXFLAGS) \
25 26
	$(CLP_CXXFLAGS) \
26 27
	$(CBC_CXXFLAGS)
27 28

	
28 29
lemon_libemon_la_LDFLAGS = \
29 30
	$(GLPK_LIBS) \
30 31
	$(CPLEX_LIBS) \
31 32
	$(SOPLEX_LIBS) \
32 33
	$(CLP_LIBS) \
33 34
	$(CBC_LIBS)
34 35

	
35 36
if HAVE_GLPK
36 37
lemon_libemon_la_SOURCES += lemon/glpk.cc
37 38
endif
38 39

	
39 40
if HAVE_CPLEX
40 41
lemon_libemon_la_SOURCES += lemon/cplex.cc
41 42
endif
42 43

	
43 44
if HAVE_SOPLEX
44 45
lemon_libemon_la_SOURCES += lemon/soplex.cc
45 46
endif
46 47

	
47 48
if HAVE_CLP
48 49
lemon_libemon_la_SOURCES += lemon/clp.cc
49 50
endif
50 51

	
51 52
if HAVE_CBC
52 53
lemon_libemon_la_SOURCES += lemon/cbc.cc
53 54
endif
54 55

	
55 56
lemon_HEADERS += \
56 57
	lemon/adaptors.h \
57 58
	lemon/arg_parser.h \
58 59
	lemon/assert.h \
59 60
	lemon/bfs.h \
60 61
	lemon/bin_heap.h \
61 62
	lemon/cbc.h \
62 63
	lemon/circulation.h \
63 64
	lemon/clp.h \
64 65
	lemon/color.h \
65 66
	lemon/concept_check.h \
66 67
	lemon/connectivity.h \
67 68
	lemon/counter.h \
68 69
	lemon/core.h \
69 70
	lemon/cplex.h \
70 71
	lemon/dfs.h \
71 72
	lemon/dijkstra.h \
72 73
	lemon/dim2.h \
73 74
	lemon/dimacs.h \
74 75
	lemon/edge_set.h \
75 76
	lemon/elevator.h \
76 77
	lemon/error.h \
77 78
	lemon/euler.h \
78 79
	lemon/full_graph.h \
79 80
	lemon/glpk.h \
80 81
	lemon/gomory_hu.h \
81 82
	lemon/graph_to_eps.h \
82 83
	lemon/grid_graph.h \
83 84
	lemon/hypercube_graph.h \
84 85
	lemon/kruskal.h \
85 86
	lemon/hao_orlin.h \
86 87
	lemon/lgf_reader.h \
87 88
	lemon/lgf_writer.h \
88 89
	lemon/list_graph.h \
89 90
	lemon/lp.h \
90 91
	lemon/lp_base.h \
91 92
	lemon/lp_skeleton.h \
92 93
	lemon/list_graph.h \
93 94
	lemon/maps.h \
94 95
	lemon/matching.h \
95 96
	lemon/math.h \
96 97
	lemon/min_cost_arborescence.h \
97 98
	lemon/nauty_reader.h \
98 99
	lemon/network_simplex.h \
99 100
	lemon/path.h \
100 101
	lemon/preflow.h \
101 102
	lemon/radix_sort.h \
102 103
	lemon/random.h \
103 104
	lemon/smart_graph.h \
104 105
	lemon/soplex.h \
105 106
	lemon/suurballe.h \
106 107
	lemon/time_measure.h \
107 108
	lemon/tolerance.h \
108 109
	lemon/unionfind.h \
109 110
	lemon/bits/windows.h
110 111

	
111 112
bits_HEADERS += \
112 113
	lemon/bits/alteration_notifier.h \
113 114
	lemon/bits/array_map.h \
114 115
	lemon/bits/bezier.h \
115 116
	lemon/bits/default_map.h \
116 117
	lemon/bits/edge_set_extender.h \
117 118
	lemon/bits/enable_if.h \
118 119
	lemon/bits/graph_adaptor_extender.h \
119 120
	lemon/bits/graph_extender.h \
120 121
	lemon/bits/map_extender.h \
121 122
	lemon/bits/path_dump.h \
122 123
	lemon/bits/solver_bits.h \
123 124
	lemon/bits/traits.h \
124 125
	lemon/bits/variant.h \
125 126
	lemon/bits/vector_map.h
126 127

	
127 128
concept_HEADERS += \
128 129
	lemon/concepts/digraph.h \
129 130
	lemon/concepts/graph.h \
130 131
	lemon/concepts/graph_components.h \
131 132
	lemon/concepts/heap.h \
132 133
	lemon/concepts/maps.h \
133 134
	lemon/concepts/path.h
0 comments (0 inline)