mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
7 lines
219 B
CMake
7 lines
219 B
CMake
macro(mapnik_find_package)
|
|
find_package(${ARGN})
|
|
set(MAPNIK_TMP_DEP ${ARGN})
|
|
list(JOIN MAPNIK_TMP_DEP " " MAPNIK_TMP_DEP)
|
|
list(APPEND MAPNIK_DEPENDENCIES "find_dependency(${MAPNIK_TMP_DEP})")
|
|
endmacro()
|