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.

19 lines
286B

  1. find_path(
  2. GLEW_INCLUDE_DIR
  3. NAMES
  4. GL
  5. PATHS
  6. include)
  7. find_library(
  8. GLEW_LIBRARY
  9. NAMES
  10. GLEW GLEWd glew32 glew32s glew32d glew32sd
  11. PATHS
  12. lib)
  13. include(FindPackageHandleStandardArgs)
  14. find_package_handle_standard_args(GLEW REQUIRED_VARS GLEW_LIBRARY GLEW_INCLUDE_DIR)