blob: a7c7e596c5b43c8f5ee5e91ee4d1bcd8d63579ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# - obsolete pkg-config module for CMake
#
# Includes FindPkgConfig.cmake which defines
#
# PKGCONFIG(package includedir libdir linkflags cflags)
#
# Calling PKGCONFIG will fill the desired information into the 4 given arguments,
# e.g. PKGCONFIG(libart-2.0 LIBART_INCLUDE_DIR LIBART_LINK_DIR LIBART_LINK_FLAGS LIBART_CFLAGS)
# if pkg-config was NOT found or the specified software package doesn't exist, the
# variable will be empty when the function returns, otherwise they will contain the respective information
#
INCLUDE(FindPkgConfig)
|