We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0afd593 commit 0fdff5dCopy full SHA for 0fdff5d
CMakeLists.txt
@@ -63,6 +63,10 @@ option(GDB "Drop into GDB with mpi_debug_here() calls" OFF)
63
option(ENABLE_PROFILING "Enable profiling of executable with gperftools." OFF)
64
option(USE_CUDA "Build with CUDA support for reionization calculations" OFF)
65
66
+# Some build options clash with each other
67
+if(USE_CUDA AND USE_MINI_HALOS)
68
+ message(FATAL_ERROR "The GPU reionization implementation does not currently support minihalos physics")
69
+endif()
70
71
# Build type
72
set(default_build_type "RelWithDebInfo")
0 commit comments