mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Don't forget to add the FindMir.cmake.
This commit is contained in:
parent
cfb7d2f036
commit
10d1d278f3
18
CMake/modules/FindMir.cmake
Normal file
18
CMake/modules/FindMir.cmake
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Try to find Mir on a Unix system
|
||||||
|
#
|
||||||
|
# This will define:
|
||||||
|
#
|
||||||
|
# MIR_LIBRARIES - Link these to use Wayland
|
||||||
|
# MIR_INCLUDE_DIR - Include directory for Wayland
|
||||||
|
#
|
||||||
|
# Copyright (c) 2014 Brandon Schaefer <brandon.schaefer@canonical.com>
|
||||||
|
|
||||||
|
if (NOT WIN32)
|
||||||
|
|
||||||
|
find_package (PkgConfig)
|
||||||
|
pkg_check_modules (PKG_MIR QUIET mirclient)
|
||||||
|
|
||||||
|
set (MIR_INCLUDE_DIR ${PKG_MIR_INCLUDE_DIRS})
|
||||||
|
set (MIR_LIBRARIES ${PKG_MIR_LIBRARIES})
|
||||||
|
|
||||||
|
endif ()
|
Loading…
Reference in New Issue
Block a user