COIN-OR::LEMON - Graph Library

Changeset 1018:35ba7236bd67 in lemon for test


Ignore:
Timestamp:
11/15/10 07:52:53 (13 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Parents:
1017:5087694945e4 (diff), 1016: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
Message:

Merge

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • test/CMakeLists.txt

    r1013 r1018  
    3636  min_cost_flow_test
    3737  min_mean_cycle_test
     38  nagamochi_ibaraki_test
    3839  path_test
    3940  planarity_test
  • test/CMakeLists.txt

    r1017 r1018  
    4848
    4949IF(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
    5156  SET(LP_TEST_LIBS lemon)
    5257
     
    8489
    8590IF(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
    8797  SET(MIP_TEST_LIBS lemon)
    8898
Note: See TracChangeset for help on using the changeset viewer.