COIN-OR::LEMON - Graph Library

Changeset 1507:14ca1624e8e8 in lemon-0.x for config/lx_check_cplex.m4


Ignore:
Timestamp:
06/21/05 16:57:17 (19 years ago)
Author:
Mihaly Barasz
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1988
Message:

Get CPLEX location (include and libdir) from the environment.
(On lemon.cs.elte.hu use "cplex_env" command to set the environment

appropriately.)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • config/lx_check_cplex.m4

    r1489 r1507  
    2222    elif test x"$with_cplex" != x"yes"; then
    2323      CPLEX_CFLAGS="-I$with_cplex/include"
     24    elif test x"$CPLEX_INCLUDEDIR" != x; then
     25      CPLEX_CFLAGS="-I$CPLEX_INCLUDEDIR"
    2426    fi
    2527
     
    2830    elif test x"$with_cplex" != x"yes"; then
    2931      CPLEX_LDFLAGS="-L$with_cplex/lib"
     32    elif test x"$CPLEX_LIBDIR" != x; then
     33      CPLEX_LDFLAGS="-L$CPLEX_LIBDIR"
    3034    fi
    3135    CPLEX_LIBS="-lcplex -lm -lpthread"
Note: See TracChangeset for help on using the changeset viewer.