COIN-OR::LEMON - Graph Library

source: lemon-0.x/test/Makefile.am @ 1970:bd88ea06ab69

Last change on this file since 1970:bd88ea06ab69 was 1962:c1c3a0fae8a1, checked in by Balazs Dezso, 18 years ago

Bug fixes in ListEdgeSet?
Added SmartEdgeSet?

File size: 2.0 KB
Line 
1AM_CPPFLAGS = -I$(top_srcdir) -fno-inline
2LDADD = $(top_builddir)/lemon/libemon.la
3
4EXTRA_DIST = preflow_graph.dim dijkstra_test.lgf
5
6noinst_HEADERS = \
7        test_tools.h \
8        graph_test.h \
9        map_test.h \
10        graph_utils_test.h \
11        heap_test.h
12
13
14check_PROGRAMS = \
15        all_pairs_shortest_path_test \
16        bfs_test \
17        counter_test \
18        dfs_test \
19        dijkstra_test \
20        edge_set_test \
21        graph_test \
22        graph_adaptor_test \
23        graph_utils_test \
24        kruskal_test \
25        maps_test \
26        matrix_maps_test \
27        max_matching_test \
28        min_cost_flow_test \
29        suurballe_test \
30        path_test \
31        preflow_test \
32        radix_sort_test \
33        test_tools_fail \
34        test_tools_pass \
35        time_measure_test \
36        unionfind_test \
37        ugraph_test \
38        xy_test \
39        heap_test \
40        simann_test
41
42if HAVE_GLPK
43check_PROGRAMS += lp_test
44else !HAVE_GLPK
45if HAVE_CPLEX
46check_PROGRAMS += lp_test
47endif HAVE_CPLEX
48endif !HAVE_GLPK
49
50TESTS = $(check_PROGRAMS)
51XFAIL_TESTS = test_tools_fail$(EXEEXT)
52
53all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
54bfs_test_SOURCES = bfs_test.cc
55counter_test_SOURCES = counter_test.cc
56dfs_test_SOURCES = dfs_test.cc
57dijkstra_test_SOURCES = dijkstra_test.cc
58edge_set_test_SOURCES = edge_set_test.cc
59graph_test_SOURCES = graph_test.cc
60graph_utils_test_SOURCES = graph_utils_test.cc
61graph_adaptor_test_SOURCES = graph_adaptor_test.cc
62kruskal_test_SOURCES = kruskal_test.cc
63maps_test_SOURCES = maps_test.cc
64matrix_maps_test_SOURCES = matrix_maps_test.cc
65min_cost_flow_test_SOURCES = min_cost_flow_test.cc
66max_matching_test_SOURCES = max_matching_test.cc
67suurballe_test_SOURCES = suurballe_test.cc
68path_test_SOURCES = path_test.cc
69radix_sort_test_SOURCES = radix_sort_test.cc
70preflow_test_SOURCES = preflow_test.cc
71time_measure_test_SOURCES = time_measure_test.cc
72test_tools_fail_SOURCES = test_tools_fail.cc
73test_tools_pass_SOURCES = test_tools_pass.cc
74unionfind_test_SOURCES = unionfind_test.cc
75xy_test_SOURCES = xy_test.cc
76ugraph_test_SOURCES = ugraph_test.cc
77heap_test_SOURCES = heap_test.cc
78simann_test_SOURCES = simann_test.cc
79
80lp_test_SOURCES = lp_test.cc
81lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
Note: See TracBrowser for help on using the repository browser.