]> granicus.if.org Git - graphviz/commitdiff
CMake: fix indentation in lib/mingle’s CMakeLists.txt
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 26 Mar 2022 18:32:26 +0000 (11:32 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 29 Mar 2022 05:53:59 +0000 (22:53 -0700)
lib/mingle/CMakeLists.txt

index ce3e7b2b948d74ddc39d4ddda64fd7871c514a66..0a860576d6c36fc61d93a9ca290f5707c521b2a9 100644 (file)
@@ -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()