Now prints information about detected/unavailable packages:
Excerpt:
```
-- The following OPTIONAL packages have been found:
* Cairo
* PkgConfig
* EXPAT
* GD
...
```
cmake_minimum_required (VERSION 2.8 FATAL_ERROR)
project (Graphviz)
+include(FeatureSummary)
+
# =============================== Build options ================================
option(enable_ltdl "Support on-demand plugin loading" ON)
option(with_digcola "DIGCOLA features in neato layout engine" ON )
enable_testing()
add_subdirectory(tests)
+
+feature_summary(WHAT ALL INCLUDE_QUIET_PACKAGES FATAL_ON_MISSING_REQUIRED_PACKAGES)