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 dbfa778 commit 877d68bCopy full SHA for 877d68b
CMakeLists.txt
@@ -152,9 +152,12 @@ if(BOOST_VERSION_OK)
152
add_test("t-20-promise" t-20-promise)
153
endif()
154
155
-add_executable(t-21-coroutine t/21-coroutine.cpp)
156
-target_link_libraries(t-21-coroutine ${LINK_DEPENDENCIES})
157
-add_test("t-21-coroutine" t-21-coroutine)
+# seems boost is periodically broken. Please, send a fixing PR if u know how
+if ((Boost_MAJOR_VERSION GREATER_EQUAL 1) AND (Boost_MINOR_VERSION GREATER_EQUAL 74))
+ add_executable(t-21-coroutine t/21-coroutine.cpp)
158
+ target_link_libraries(t-21-coroutine ${LINK_DEPENDENCIES})
159
+ add_test("t-21-coroutine" t-21-coroutine)
160
+endif()
161
162
add_executable(t-22-ping_drop-policy t/22-ping_drop-policy.cpp)
163
target_link_libraries(t-22-ping_drop-policy ${LINK_DEPENDENCIES})
0 commit comments