You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
18 lines
426 B
18 lines
426 B
# 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 ()
|
|
|