Platformer in OpenGL
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.

18 rivejä
426 B

5 vuotta sitten
  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 ()