From 5d0b9288d6f730627abe4767264329f32a781164 Mon Sep 17 00:00:00 2001 From: Eric Berquist Date: Tue, 5 Mar 2024 14:21:15 -0700 Subject: [PATCH] cmake-format --- experimental/CMakeLists.txt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/experimental/CMakeLists.txt b/experimental/CMakeLists.txt index 561819745..46b7e6b30 100644 --- a/experimental/CMakeLists.txt +++ b/experimental/CMakeLists.txt @@ -55,13 +55,16 @@ if(NOT SST_DISABLE_ZLIB) find_package(ZLIB) endif() -option(SST_DISABLE_CURSES "Use curses library (needed for interactive sst-info)" OFF) +option(SST_DISABLE_CURSES + "Use curses library (needed for interactive sst-info)" OFF) if(NOT SST_DISABLE_CURSES) # https://gitlab.kitware.com/cmake/cmake/-/issues/23236 set(CURSES_NEED_NCURSES 1) find_package(Curses) if(NOT CURSES_HAVE_NCURSES_H) - message(FATAL_ERROR "Curses was found, but the specific header was not") + message( + FATAL_ERROR + "Curses was found, but the specific header was not") endif() endif()