-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
74 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
#### Adapted from http://www.openflipper.org/svnrepo/CoMISo/trunk/CoMISo/cmake/FindGUROBI.cmake | ||
|
||
|
||
# - Try to find GUROBI | ||
# Once done this will define | ||
# GUROBI_FOUND - System has Gurobi | ||
# GUROBI_INCLUDE_DIRS - The Gurobi include directories | ||
# GUROBI_LIBRARIES - The libraries needed to use Gurobi | ||
|
||
if (GUROBI_INCLUDE_DIR) | ||
# in cache already | ||
set(GUROBI_FOUND TRUE) | ||
set(GUROBI_INCLUDE_DIRS ${GUROBI_INCLUDE_DIR} ) | ||
set(GUROBI_LIBRARIES ${GUROBI_CXX_LIBRARY} ${GUROBI_LIBRARY} ) | ||
else (GUROBI_INCLUDE_DIR) | ||
|
||
find_path(GUROBI_INCLUDE_DIR | ||
NAMES gurobi_c++.h | ||
PATHS "$ENV{GUROBI_HOME}/include" | ||
"/Library/gurobi502/mac64/include" | ||
"C:\\libs\\gurobi502\\include" | ||
) | ||
find_library( GUROBI_LIBRARY | ||
NAMES gurobi | ||
gurobi702 | ||
gurobi701 | ||
gurobi70 | ||
gurobi45 | ||
gurobi46 | ||
gurobi50 | ||
gurobi51 | ||
gurobi52 | ||
gurobi55 | ||
gurobi56 | ||
gurobi60 | ||
gurobi65 | ||
PATHS "$ENV{GUROBI_HOME}/lib" | ||
"/Library/gurobi701/mac64/lib" | ||
"C:\\libs\\gurobi70\\lib" | ||
) | ||
|
||
find_library( GUROBI_CXX_LIBRARY | ||
NAMES gurobi_c++ | ||
PATHS "$ENV{GUROBI_HOME}/lib" | ||
"/Library/gurobi70/mac64/lib" | ||
"C:\\libs\\gurobi70\\lib" | ||
) | ||
|
||
set(GUROBI_INCLUDE_DIRS "${GUROBI_INCLUDE_DIR}" ) | ||
# It is very important | ||
set(GUROBI_LIBRARIES ${GUROBI_CXX_LIBRARY} ${GUROBI_LIBRARY}) | ||
|
||
# use c++ headers as default | ||
# set(GUROBI_COMPILER_FLAGS "-DIL_STD" CACHE STRING "Gurobi Compiler Flags") | ||
|
||
include(FindPackageHandleStandardArgs) | ||
# handle the QUIETLY and REQUIRED arguments and set LIBCPLEX_FOUND to TRUE | ||
# if all listed variables are TRUE | ||
find_package_handle_standard_args(GUROBI DEFAULT_MSG | ||
GUROBI_LIBRARY GUROBI_CXX_LIBRARY GUROBI_INCLUDE_DIR) | ||
|
||
mark_as_advanced(GUROBI_INCLUDE_DIR GUROBI_LIBRARY GUROBI_CXX_LIBRARY) | ||
|
||
endif(GUROBI_INCLUDE_DIR) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters