forked from nicbarker/clay
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Renderers/Cairo] Add FindCairo.cmake (nicbarker#122)
- Loading branch information
1 parent
ba78b35
commit 2938c00
Showing
3 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Defines: | ||
# CAIRO_FOUND - System has Cairo | ||
# CAIRO_INCLUDE_DIRS - Cairo include directories | ||
# CAIRO_LIBRARY - Cairo library | ||
# Cairo::Cairo - Imported target | ||
|
||
find_path(CAIRO_INCLUDE_DIRS | ||
NAMES cairo/cairo.h | ||
PATHS ${CAIRO_ROOT_DIR} | ||
PATH_SUFFIXES include | ||
) | ||
|
||
find_library(CAIRO_LIBRARY | ||
NAMES cairo | ||
PATHS ${CAIRO_ROOT_DIR} | ||
PATH_SUFFIXES lib lib64 | ||
) | ||
|
||
include(FindPackageHandleStandardArgs) | ||
find_package_handle_standard_args(Cairo | ||
REQUIRED_VARS CAIRO_LIBRARY CAIRO_INCLUDE_DIRS | ||
) | ||
|
||
if(Cairo_FOUND AND NOT TARGET Cairo::Cairo) | ||
add_library(Cairo::Cairo UNKNOWN IMPORTED) | ||
set_target_properties(Cairo::Cairo PROPERTIES | ||
IMPORTED_LOCATION "${CAIRO_LIBRARY}" | ||
INTERFACE_INCLUDE_DIRECTORIES "${CAIRO_INCLUDE_DIRS}" | ||
) | ||
endif() | ||
|
||
mark_as_advanced(CAIRO_INCLUDE_DIRS CAIRO_LIBRARY) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters