From 23e6e1b8b49286dae0aa4c08024c1886f9e417b0 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Wed, 10 Feb 2021 11:57:16 -0600 Subject: [PATCH] Fixing indentation of CMake options. --- CMakeLists.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1937940799..aa66ea7aa5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,12 +25,12 @@ endif() # Command line options #=============================================================================== -option(openmp "Enable shared-memory parallelism with OpenMP" ON) -option(profile "Compile with profiling flags" OFF) -option(debug "Compile with debug flags" OFF) -option(optimize "Turn on all compiler optimization flags" OFF) -option(coverage "Compile with coverage analysis flags" OFF) -option(dagmc "Enable support for DAGMC (CAD) geometry" OFF) +option(openmp "Enable shared-memory parallelism with OpenMP" ON) +option(profile "Compile with profiling flags" OFF) +option(debug "Compile with debug flags" OFF) +option(optimize "Turn on all compiler optimization flags" OFF) +option(coverage "Compile with coverage analysis flags" OFF) +option(dagmc "Enable support for DAGMC (CAD) geometry" OFF) option(libmesh "Enable support for libMesh unstructured mesh tallies" OFF) #===============================================================================