Platformer in OpenGL
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

18 lignes
426 B

il y a 5 ans
  1. # Try to find Mir on a Unix system
  2. #
  3. # This will define:
  4. #
  5. # MIR_LIBRARIES - Link these to use Wayland
  6. # MIR_INCLUDE_DIR - Include directory for Wayland
  7. #
  8. # Copyright (c) 2014 Brandon Schaefer <brandon.schaefer@canonical.com>
  9. if (NOT WIN32)
  10. find_package (PkgConfig)
  11. pkg_check_modules (PKG_MIR QUIET mirclient)
  12. set (MIR_INCLUDE_DIR ${PKG_MIR_INCLUDE_DIRS})
  13. set (MIR_LIBRARIES ${PKG_MIR_LIBRARIES})
  14. endif ()