From 3f5374820a56c472a79e81b977861eddf4bff343 Mon Sep 17 00:00:00 2001 From: Dennis Klein Date: Wed, 4 Sep 2019 12:53:23 +0200 Subject: [PATCH] CMake: Add config for --graphviz --- CMakeGraphVizOptions.cmake | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 CMakeGraphVizOptions.cmake diff --git a/CMakeGraphVizOptions.cmake b/CMakeGraphVizOptions.cmake new file mode 100644 index 00000000..70b921a1 --- /dev/null +++ b/CMakeGraphVizOptions.cmake @@ -0,0 +1,14 @@ +set(GRAPHVIZ_GRAPH_TYPE digraph) +set(GRAPHVIZ_GRAPH_NAME FairMQ) +set(GRAPHVIZ_EXECUTABLES ON) +set(GRAPHVIZ_STATIC_LIBS OFF) +set(GRAPHVIZ_SHARED_LIBS ON) +set(GRAPHVIZ_MODULE_LIBS OFF) +set(GRAPHVIZ_GENERATE_PER_TARGET OFF) +set(GRAPHVIZ_GENERATE_DEPENDERS OFF) +set(GRAPHVIZ_IGNORE_TARGETS + "fairmq-ex.*" + "testsuite_.*" + "testhelper_.*" + "FairMQPlugin_test_dummy" +)