Changeset 917:4980b05606bd in lemon-main for test
- Timestamp:
- 11/16/10 07:46:01 (14 years ago)
- Branch:
- default
- Children:
- 918:8583fb74238c, 921:140c953ad5d1, 1031:ae0b056593a7
- Parents:
- 916:70bee017b584 (diff), 915:234d635ad721 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Location:
- test
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
test/CMakeLists.txt
r914 r917 32 32 maps_test 33 33 matching_test 34 max_cardinality_search_test 34 35 max_clique_test 35 36 min_cost_arborescence_test -
test/CMakeLists.txt
r916 r917 37 37 min_cost_flow_test 38 38 min_mean_cycle_test 39 nagamochi_ibaraki_test 39 40 path_test 40 41 planarity_test … … 48 49 49 50 IF(LEMON_HAVE_LP) 50 ADD_EXECUTABLE(lp_test lp_test.cc) 51 IF(${CMAKE_BUILD_TYPE} STREQUAL "Maintainer") 52 ADD_EXECUTABLE(lp_test lp_test.cc) 53 ELSE() 54 ADD_EXECUTABLE(lp_test EXCLUDE_FROM_ALL lp_test.cc) 55 ENDIF() 56 51 57 SET(LP_TEST_LIBS lemon) 52 58 … … 84 90 85 91 IF(LEMON_HAVE_MIP) 86 ADD_EXECUTABLE(mip_test mip_test.cc) 92 IF(${CMAKE_BUILD_TYPE} STREQUAL "Maintainer") 93 ADD_EXECUTABLE(mip_test mip_test.cc) 94 ELSE() 95 ADD_EXECUTABLE(mip_test EXCLUDE_FROM_ALL mip_test.cc) 96 ENDIF() 97 87 98 SET(MIP_TEST_LIBS lemon) 88 99 -
test/Makefile.am
r913 r917 34 34 test/maps_test \ 35 35 test/matching_test \ 36 test/max_cardinality_search_test \ 36 37 test/max_clique_test \ 37 38 test/min_cost_arborescence_test \ … … 87 88 test_mip_test_SOURCES = test/mip_test.cc 88 89 test_matching_test_SOURCES = test/matching_test.cc 90 test_max_cardinality_search_test_SOURCES = test/max_cardinality_search_test.cc 89 91 test_max_clique_test_SOURCES = test/max_clique_test.cc 90 92 test_min_cost_arborescence_test_SOURCES = test/min_cost_arborescence_test.cc -
test/Makefile.am
r916 r917 39 39 test/min_cost_flow_test \ 40 40 test/min_mean_cycle_test \ 41 test/nagamochi_ibaraki_test \ 41 42 test/path_test \ 42 43 test/planarity_test \ … … 92 93 test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc 93 94 test_min_mean_cycle_test_SOURCES = test/min_mean_cycle_test.cc 95 test_nagamochi_ibaraki_test_SOURCES = test/nagamochi_ibaraki_test.cc 94 96 test_path_test_SOURCES = test/path_test.cc 95 97 test_planarity_test_SOURCES = test/planarity_test.cc
Note: See TracChangeset
for help on using the changeset viewer.