COIN-OR::LEMON - Graph Library

source: lemon-0.x/test/Makefile.am @ 1993:2115143eceea

Last change on this file since 1993:2115143eceea was 1977:8ef02f0c4245, checked in by Alpar Juttner, 18 years ago

RefPtr?: a reference counted pointer class

File size: 2.1 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        refptr_test \
34        test_tools_fail \
35        test_tools_pass \
36        time_measure_test \
37        unionfind_test \
38        ugraph_test \
39        xy_test \
40        heap_test \
41        simann_test
42
43if HAVE_GLPK
44check_PROGRAMS += lp_test
45else !HAVE_GLPK
46if HAVE_CPLEX
47check_PROGRAMS += lp_test
48endif HAVE_CPLEX
49endif !HAVE_GLPK
50
51TESTS = $(check_PROGRAMS)
52XFAIL_TESTS = test_tools_fail$(EXEEXT)
53
54all_pairs_shortest_path_test_SOURCES = all_pairs_shortest_path_test.cc
55bfs_test_SOURCES = bfs_test.cc
56counter_test_SOURCES = counter_test.cc
57dfs_test_SOURCES = dfs_test.cc
58dijkstra_test_SOURCES = dijkstra_test.cc
59edge_set_test_SOURCES = edge_set_test.cc
60graph_test_SOURCES = graph_test.cc
61graph_utils_test_SOURCES = graph_utils_test.cc
62graph_adaptor_test_SOURCES = graph_adaptor_test.cc
63kruskal_test_SOURCES = kruskal_test.cc
64maps_test_SOURCES = maps_test.cc
65matrix_maps_test_SOURCES = matrix_maps_test.cc
66min_cost_flow_test_SOURCES = min_cost_flow_test.cc
67max_matching_test_SOURCES = max_matching_test.cc
68suurballe_test_SOURCES = suurballe_test.cc
69path_test_SOURCES = path_test.cc
70radix_sort_test_SOURCES = radix_sort_test.cc
71refptr_test_SOURCES = refptr_test.cc
72preflow_test_SOURCES = preflow_test.cc
73time_measure_test_SOURCES = time_measure_test.cc
74test_tools_fail_SOURCES = test_tools_fail.cc
75test_tools_pass_SOURCES = test_tools_pass.cc
76unionfind_test_SOURCES = unionfind_test.cc
77xy_test_SOURCES = xy_test.cc
78ugraph_test_SOURCES = ugraph_test.cc
79heap_test_SOURCES = heap_test.cc
80simann_test_SOURCES = simann_test.cc
81
82lp_test_SOURCES = lp_test.cc
83lp_test_CXXFLAGS = $(GLPK_CFLAGS) $(CPLEX_CFLAGS)
Note: See TracBrowser for help on using the repository browser.