Skip to content

Commit 48fec67

Browse files
remove fault beta flag and disable mutithreading (not needed)
1 parent 0ef8cce commit 48fec67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set(ARCHITECTURE "native") # CPU architecture to optimize for (only relev
1414
# options
1515
option(BUILD_DOC "Build documentation" OFF)
1616
option(COMPILER_WARNINGS "Enable compiler warnings" ON)
17-
option(ENABLE_MULTITHREADING "Link the default multithreading library for the current target system" ON)
17+
option(ENABLE_MULTITHREADING "Link the default multithreading library for the current target system" OFF)
1818
option(MAKE_32_BIT_BINARY "Compile as 32 bit application. No effect on 32 bit Systems" OFF)
1919
option(OPENMP "enable openmp" OFF)
2020
option(OPTIMIZE_DEBUG "apply optimizations also in debug mode" ON)
@@ -23,7 +23,7 @@ option(CLANG_TIDY "use clang-tidy" OFF)
2323
option(OPTIMIZE_FOR_ARCHITECTURE "enable optimizations for specified architecture" OFF)
2424
option(LTO_ENABLED "enable interprocedural and link time optimizations" ON)
2525
option(COMPILER_EXTENSIONS "enable compiler specific C++ extensions" OFF)
26-
option(BETA_VERSION "version is a beta version" ON)
26+
option(BETA_VERSION "version is a beta version" OFF)
2727
set(BETA_VERSION_NR 1)
2828

2929
# ======================================================================================================================

0 commit comments

Comments
 (0)