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.

74 lines
2.5 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/gurobi602/mac64/include"
  18. "/Library/gurobi604/mac64/include"
  19. "/Library/gurobi605/mac64/include"
  20. "C:\\libs\\gurobi502\\include"
  21. "C:\\gurobi600\\win64\\include"
  22. "${GUROBI_ROOT}/include"
  23. )
  24. find_library( GUROBI_LIBRARY
  25. NAMES gurobi
  26. gurobi45
  27. gurobi46
  28. gurobi50
  29. gurobi51
  30. gurobi52
  31. gurobi55
  32. gurobi56
  33. gurobi60
  34. PATHS "$ENV{GUROBI_HOME}/lib"
  35. "/Library/gurobi502/mac64/lib"
  36. "/Library/gurobi602/mac64/lib"
  37. "/Library/gurobi604/mac64/lib"
  38. "/Library/gurobi605/mac64/lib"
  39. "C:\\libs\\gurobi502\\lib"
  40. "C:\\gurobi600\\win64\\lib"
  41. "${GUROBI_ROOT}/lib"
  42. )
  43. find_library( GUROBI_CXX_LIBRARY
  44. NAMES gurobi_c++
  45. PATHS "$ENV{GUROBI_HOME}/lib"
  46. "/Library/gurobi502/mac64/lib"
  47. "/Library/gurobi602/mac64/lib"
  48. "/Library/gurobi604/mac64/lib"
  49. "/Library/gurobi605/mac64/lib"
  50. "C:\\libs\\gurobi502\\lib"
  51. "C:\\gurobi600\\win64\\lib"
  52. "${GUROBI_ROOT}/lib"
  53. )
  54. set(GUROBI_INCLUDE_DIRS "${GUROBI_INCLUDE_DIR}" )
  55. set(GUROBI_LIBRARIES "${GUROBI_LIBRARY};${GUROBI_CXX_LIBRARY}" )
  56. # use c++ headers as default
  57. # set(GUROBI_COMPILER_FLAGS "-DIL_STD" CACHE STRING "Gurobi Compiler Flags")
  58. include(FindPackageHandleStandardArgs)
  59. # handle the QUIETLY and REQUIRED arguments and set LIBCPLEX_FOUND to TRUE
  60. # if all listed variables are TRUE
  61. find_package_handle_standard_args(GUROBI DEFAULT_MSG
  62. GUROBI_LIBRARY GUROBI_CXX_LIBRARY GUROBI_INCLUDE_DIR)
  63. mark_as_advanced(GUROBI_INCLUDE_DIR GUROBI_LIBRARY GUROBI_CXX_LIBRARY)
  64. endif(GUROBI_INCLUDE_DIR)