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.

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