From 01c4b17290d6e2ed780dc1e7424a1c27db44f47e Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 26 Mar 2022 11:32:26 -0700 Subject: [PATCH] =?utf8?q?CMake:=20fix=20indentation=20in=20lib/mingle?= =?utf8?q?=E2=80=99s=20CMakeLists.txt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- lib/mingle/CMakeLists.txt | 46 +++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 23 deletions(-) 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() -- 2.40.0