Platformer in OpenGL
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
426 B

5 年前
  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 ()