You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
2.2 KiB

  1. #### Taken from http://www.openflipper.org/svnrepo/CoMISo/trunk/CoMISo/cmake/FindGUROBI.cmake
  2. # - Try to find GUROBI
  3. # Once done this will define
  4. # GUROBI_FOUND - System has Gurobi
  5. # GUROBI_INCLUDE_DIRS - The Gurobi include directories
  6. # GUROBI_LIBRARIES - The libraries needed to use Gurobi
  7. if (GUROBI_INCLUDE_DIR)
  8. # in cache already
  9. set(GUROBI_FOUND TRUE)
  10. set(GUROBI_INCLUDE_DIRS "${GUROBI_INCLUDE_DIR}" )
  11. set(GUROBI_LIBRARIES "${GUROBI_LIBRARY};${GUROBI_CXX_LIBRARY}" )
  12. else (GUROBI_INCLUDE_DIR)
  13. find_path(GUROBI_INCLUDE_DIR
  14. NAMES gurobi_c++.h
  15. PATHS "$ENV{GUROBI_HOME}/include"
  16. "/Library/gurobi502/mac64/include"
  17. "/Library/gurobi604/mac64/include"
  18. "C:\\libs\\gurobi502\\include"
  19. "C:\\gurobi600\\win64\\include"
  20. "${GUROBI_ROOT}/include"
  21. )
  22. find_library( GUROBI_LIBRARY
  23. NAMES gurobi
  24. gurobi45
  25. gurobi46
  26. gurobi50
  27. gurobi51
  28. gurobi52
  29. gurobi55
  30. gurobi56
  31. gurobi60
  32. PATHS "$ENV{GUROBI_HOME}/lib"
  33. "/Library/gurobi502/mac64/lib"
  34. "/Library/gurobi604/mac64/lib"
  35. "C:\\libs\\gurobi502\\lib"
  36. "C:\\gurobi600\\win64\\lib"
  37. "${GUROBI_ROOT}/lib"
  38. )
  39. find_library( GUROBI_CXX_LIBRARY
  40. NAMES gurobi_c++
  41. PATHS "$ENV{GUROBI_HOME}/lib"
  42. "/Library/gurobi502/mac64/lib"
  43. "/Library/gurobi604/mac64/lib"
  44. "C:\\libs\\gurobi502\\lib"
  45. "C:\\gurobi600\\win64\\lib"
  46. "${GUROBI_ROOT}/lib"
  47. )
  48. set(GUROBI_INCLUDE_DIRS "${GUROBI_INCLUDE_DIR}" )
  49. set(GUROBI_LIBRARIES "${GUROBI_LIBRARY};${GUROBI_CXX_LIBRARY}" )
  50. # use c++ headers as default
  51. # set(GUROBI_COMPILER_FLAGS "-DIL_STD" CACHE STRING "Gurobi Compiler Flags")
  52. include(FindPackageHandleStandardArgs)
  53. # handle the QUIETLY and REQUIRED arguments and set LIBCPLEX_FOUND to TRUE
  54. # if all listed variables are TRUE
  55. find_package_handle_standard_args(GUROBI DEFAULT_MSG
  56. GUROBI_LIBRARY GUROBI_CXX_LIBRARY GUROBI_INCLUDE_DIR)
  57. mark_as_advanced(GUROBI_INCLUDE_DIR GUROBI_LIBRARY GUROBI_CXX_LIBRARY)
  58. endif(GUROBI_INCLUDE_DIR)