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.

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