From ad0452adcbf1cabd1b0b83d2754a036fa54561a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Cern=C3=BD?= Date: Tue, 19 Oct 2021 13:42:59 +0200 Subject: [PATCH] Show custom targets in dependency graphs The dependency graphs can be generated using this command: cmake --graphviz=ssg.dot .. The graphs can be configured by the CMakeGraphVizOptions.cmake file. See https://cmake.org/cmake/help/latest/module/CMakeGraphVizOptions.html --- CMakeGraphVizOptions.cmake | 1 + 1 file changed, 1 insertion(+) create mode 100644 CMakeGraphVizOptions.cmake diff --git a/CMakeGraphVizOptions.cmake b/CMakeGraphVizOptions.cmake new file mode 100644 index 00000000000..29e6f9cb51d --- /dev/null +++ b/CMakeGraphVizOptions.cmake @@ -0,0 +1 @@ +set(GRAPHVIZ_CUSTOM_TARGETS TRUE)