From d606036321a2ded9d83c2c1fe5196f535429cf67 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Mon, 21 Mar 2022 18:13:03 -0700 Subject: [PATCH] lib/topfish: fix CMakeLists.txt indentation Unclear why `cmakelang.lint` does not warn about this. --- lib/topfish/CMakeLists.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/lib/topfish/CMakeLists.txt b/lib/topfish/CMakeLists.txt index 82cdcc613..ebc669b8b 100644 --- a/lib/topfish/CMakeLists.txt +++ b/lib/topfish/CMakeLists.txt @@ -1,17 +1,17 @@ if(with_smyrna) -add_library(topfish STATIC - # Header files - hierarchy.h + add_library(topfish STATIC + # Header files + hierarchy.h - # Source files - hierarchy.c - rescale_layout.c -) + # Source files + hierarchy.c + rescale_layout.c + ) -target_include_directories(topfish PRIVATE - ${GRAPHVIZ_LIB_DIR} - ${GRAPHVIZ_LIB_DIR}/common -) + target_include_directories(topfish PRIVATE + ${GRAPHVIZ_LIB_DIR} + ${GRAPHVIZ_LIB_DIR}/common + ) endif() -- 2.40.0