Changeset 914:35ba7236bd67 in lemon-main for test
- Timestamp:
- 11/15/10 07:52:53 (14 years ago)
- Branch:
- default
- Parents:
- 913:5087694945e4 (diff), 912:09282720100b (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
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/CMakeLists.txt
r909 r914 36 36 min_cost_flow_test 37 37 min_mean_cycle_test 38 nagamochi_ibaraki_test 38 39 path_test 39 40 planarity_test -
test/CMakeLists.txt
r913 r914 48 48 49 49 IF(LEMON_HAVE_LP) 50 ADD_EXECUTABLE(lp_test lp_test.cc) 50 IF(${CMAKE_BUILD_TYPE} STREQUAL "Maintainer") 51 ADD_EXECUTABLE(lp_test lp_test.cc) 52 ELSE() 53 ADD_EXECUTABLE(lp_test EXCLUDE_FROM_ALL lp_test.cc) 54 ENDIF() 55 51 56 SET(LP_TEST_LIBS lemon) 52 57 … … 84 89 85 90 IF(LEMON_HAVE_MIP) 86 ADD_EXECUTABLE(mip_test mip_test.cc) 91 IF(${CMAKE_BUILD_TYPE} STREQUAL "Maintainer") 92 ADD_EXECUTABLE(mip_test mip_test.cc) 93 ELSE() 94 ADD_EXECUTABLE(mip_test EXCLUDE_FROM_ALL mip_test.cc) 95 ENDIF() 96 87 97 SET(MIP_TEST_LIBS lemon) 88 98
Note: See TracChangeset
for help on using the changeset viewer.