Platformer in OpenGL
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

26 Zeilen
915 B

vor 5 Jahren
  1. find_package(PkgConfig)
  2. pkg_check_modules(WaylandProtocols QUIET wayland-protocols>=${WaylandProtocols_FIND_VERSION})
  3. execute_process(COMMAND ${PKG_CONFIG_EXECUTABLE} --variable=pkgdatadir wayland-protocols
  4. OUTPUT_VARIABLE WaylandProtocols_PKGDATADIR
  5. RESULT_VARIABLE _pkgconfig_failed)
  6. if (_pkgconfig_failed)
  7. message(FATAL_ERROR "Missing wayland-protocols pkgdatadir")
  8. endif()
  9. string(REGEX REPLACE "[\r\n]" "" WaylandProtocols_PKGDATADIR "${WaylandProtocols_PKGDATADIR}")
  10. find_package_handle_standard_args(WaylandProtocols
  11. FOUND_VAR
  12. WaylandProtocols_FOUND
  13. REQUIRED_VARS
  14. WaylandProtocols_PKGDATADIR
  15. VERSION_VAR
  16. WaylandProtocols_VERSION
  17. HANDLE_COMPONENTS
  18. )
  19. set(WAYLAND_PROTOCOLS_FOUND ${WaylandProtocols_FOUND})
  20. set(WAYLAND_PROTOCOLS_PKGDATADIR ${WaylandProtocols_PKGDATADIR})
  21. set(WAYLAND_PROTOCOLS_VERSION ${WaylandProtocols_VERSION})