From 70ecacee7c703ddb273cf8022ba7086b7b2c8e3c Mon Sep 17 00:00:00 2001 From: jpekkila Date: Wed, 24 Jun 2020 17:04:35 +0300 Subject: [PATCH] Reverted the default build options to what they were before merging (again) --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 29ec11e..b2722d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,11 +30,11 @@ endif() message(STATUS "Build type: " ${CMAKE_BUILD_TYPE}) ## Options -option(DOUBLE_PRECISION "Generates double precision code." ON) -option(BUILD_SAMPLES "Builds projects in samples subdirectory." ON) -option(BUILD_STANDALONE "Builds standalone Astaroth." OFF) -option(MPI_ENABLED "Enables additional functions for MPI communciation." ON) -option(MULTIGPU_ENABLED "Enables multi-GPU on a single node. Uses peer-to-peer communication instead of MPI. Affects Legacy & Node layers only." OFF) +option(DOUBLE_PRECISION "Generates double precision code." OFF) +option(BUILD_SAMPLES "Builds projects in samples subdirectory." OFF) +option(BUILD_STANDALONE "Builds standalone Astaroth." ON) +option(MPI_ENABLED "Enables additional functions for MPI communciation." OFF) +option(MULTIGPU_ENABLED "Enables multi-GPU on a single node. Uses peer-to-peer communication instead of MPI. Affects Legacy & Node layers only." ON) ## Options (DEPRECATED) # option(BUILD_DEBUG "Builds the program with extensive error checking" OFF)