From 3f2d85cad331f3db38cef5479b839dc3f5534f03 Mon Sep 17 00:00:00 2001 From: Kalin Kiesling Date: Tue, 22 Mar 2022 14:34:26 -0500 Subject: [PATCH] fix order --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 168309de86..772256f84a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,9 +25,9 @@ endif() # Command line options #=============================================================================== -option(OPENMC_ENABLE_PROFILE "Enable shared-memory parallelism with OpenMP" ON) -option(OPENMC_ENABLE_COVERAGE "Compile with profiling flags" OFF) -option(OPENMC_USE_OPENMP "Compile with coverage analysis flags" OFF) +option(OPENMC_USE_OPENMP "Enable shared-memory parallelism with OpenMP" ON) +option(OPENMC_ENABLE_PROFILE "Compile with profiling flags" OFF) +option(OPENMC_ENABLE_COVERAGE "Compile with coverage analysis flags" OFF) option(OPENMC_USE_DAGMC "Enable support for DAGMC (CAD) geometry" OFF) option(OPENMC_USE_LIBMESH "Enable support for libMesh unstructured mesh tallies" OFF)