From: Matthew Fernandez Date: Sat, 26 Mar 2022 18:32:26 +0000 (-0700) Subject: CMake: fix indentation in lib/mingle’s CMakeLists.txt X-Git-Tag: 4.0.0~152^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01c4b17290d6e2ed780dc1e7424a1c27db44f47e;p=graphviz CMake: fix indentation in lib/mingle’s CMakeLists.txt --- diff --git a/lib/mingle/CMakeLists.txt b/lib/mingle/CMakeLists.txt index ce3e7b2b9..0a860576d 100644 --- a/lib/mingle/CMakeLists.txt +++ b/lib/mingle/CMakeLists.txt @@ -1,29 +1,29 @@ if(ANN_FOUND) -add_library(libmingle STATIC - # Header files - agglomerative_bundling.h - edge_bundling.h - ink.h - nearest_neighbor_graph.h - nearest_neighbor_graph_ann.h + add_library(libmingle STATIC + # Header files + agglomerative_bundling.h + edge_bundling.h + ink.h + nearest_neighbor_graph.h + nearest_neighbor_graph_ann.h - # Source files - agglomerative_bundling.cpp - edge_bundling.cpp - ink.cpp - nearest_neighbor_graph.cpp - nearest_neighbor_graph_ann.cpp -) + # Source files + agglomerative_bundling.cpp + edge_bundling.cpp + ink.cpp + nearest_neighbor_graph.cpp + nearest_neighbor_graph_ann.cpp + ) -target_include_directories(libmingle PRIVATE - ${GRAPHVIZ_LIB_DIR} - ${GRAPHVIZ_LIB_DIR}/cdt - ${GRAPHVIZ_LIB_DIR}/cgraph - ${GRAPHVIZ_LIB_DIR}/common - ${GRAPHVIZ_LIB_DIR}/gvc - ${GRAPHVIZ_LIB_DIR}/pathplan - ${ANN_INCLUDE_DIR} -) + target_include_directories(libmingle PRIVATE + ${GRAPHVIZ_LIB_DIR} + ${GRAPHVIZ_LIB_DIR}/cdt + ${GRAPHVIZ_LIB_DIR}/cgraph + ${GRAPHVIZ_LIB_DIR}/common + ${GRAPHVIZ_LIB_DIR}/gvc + ${GRAPHVIZ_LIB_DIR}/pathplan + ${ANN_INCLUDE_DIR} + ) endif()