From f4974f6b6f7b6cd1adfa85ef187a761857344ac4 Mon Sep 17 00:00:00 2001 From: Maxime Haselbauer Date: Wed, 8 May 2024 15:33:39 +0000 Subject: [PATCH] Add creation of graphviz target --- CMakeGraphVizOptions.cmake | 1 + scripts/configure.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 CMakeGraphVizOptions.cmake diff --git a/CMakeGraphVizOptions.cmake b/CMakeGraphVizOptions.cmake new file mode 100644 index 0000000..244e7a7 --- /dev/null +++ b/CMakeGraphVizOptions.cmake @@ -0,0 +1 @@ +SET (GRAPHVIZ_CUSTOM_TARGETS ON) diff --git a/scripts/configure.sh b/scripts/configure.sh index afed9ef..8b3c04f 100755 --- a/scripts/configure.sh +++ b/scripts/configure.sh @@ -6,4 +6,4 @@ rm -rf build mkdir -p build cd build conan install ../conanfile.txt --profile:build=../conan_profiles/linux-x86 --profile:host=../conan_profiles/linux-x86 --build missing -cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=ON +cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=ON --graphviz=cmake.dot