git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/branches/OpenSceneGraph-3.2@14325 16af8721-9629-0410-8352-f15c8da7e697
19 lines
365 B
CMake
19 lines
365 B
CMake
#use pkg-config to find various modues
|
|
INCLUDE(FindPkgConfig OPTIONAL)
|
|
|
|
IF(PKG_CONFIG_FOUND)
|
|
|
|
INCLUDE(FindPkgConfig)
|
|
|
|
#Version 2.35 introduces the rsvg_cleanup function which is used
|
|
PKG_CHECK_MODULES(RSVG librsvg-2.0>=2.35)
|
|
|
|
PKG_CHECK_MODULES(CAIRO cairo)
|
|
|
|
IF (RSVG_FOUND AND NOT CAIRO_FOUND)
|
|
SET(RSVG_FOUND FALSE)
|
|
ENDIF()
|
|
|
|
|
|
ENDIF()
|