We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dc4c47 commit 515f85cCopy full SHA for 515f85c
src/CMakeLists.txt
@@ -134,8 +134,10 @@ message( " LAMBDA_STATIC_BUILD ${LAMBDA_STATIC_BUILD}")
134
message(STATUS "Run 'cmake -LH' to get a comment on each option.")
135
message(STATUS "Remove CMakeCache.txt and re-run cmake with -DOPTIONNAME=ON|OFF to change an option.")
136
137
-# deactivate the version check until all issues are resolved
138
-add_definitions (-DSEQAN_DISABLE_VERSION_CHECK="YES")
+# deactivate the version check on broken seqan releases
+if (SEQAN_VERSION_STRING VERSION_LESS "2.3.2")
139
+ add_definitions (-DSEQAN_DISABLE_VERSION_CHECK="YES")
140
+endif ()
141
142
# ----------------------------------------------------------------------------
143
# Compiler specifics
0 commit comments