Skip to content

Commit

Permalink
support Taskflow 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dotlambda authored and maxbachmann committed Oct 15, 2024
1 parent cbfcedb commit 74b5cc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ check_cpu_arch_x86(RAPIDFUZZ_ARCH_X86)

set(RF_BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)

find_package(Taskflow 3.7.0 QUIET)
find_package(Taskflow 3.8.0 QUIET)
if(NOT Taskflow_FOUND)
find_package(Taskflow 3.7.0 QUIET)
endif()
if(NOT Taskflow_FOUND)
find_package(Taskflow 3.6.0 QUIET)
endif()
Expand Down
2 changes: 1 addition & 1 deletion src/rapidfuzz/process_cpp.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#pragma once
#include "cpp_common.hpp"
#include "rapidfuzz.h"
#include "taskflow/algorithm/for_each.hpp"
#include "taskflow/taskflow.hpp"
#include "taskflow/algorithm/for_each.hpp"
#include <atomic>
#include <exception>
#include <stdexcept>
Expand Down

0 comments on commit 74b5cc6

Please sign in to comment.