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 a7ccbbf commit 503ac6dCopy full SHA for 503ac6d
vendor/simdjson.cmake
@@ -49,6 +49,11 @@ if (QUICK_LINT_JS_USE_BUNDLED_SIMDJSON)
49
)
50
else ()
51
find_package(simdjson REQUIRED)
52
+ if (TARGET simdjson::simdjson AND NOT TARGET simdjson)
53
+ # Support Homebrew's simdjson 3.10.0's simdjsonTargets.cmake which defines a
54
+ # simdjson::simdjson target but not a simdjson target.
55
+ add_library(simdjson ALIAS simdjson::simdjson)
56
+ endif ()
57
endif ()
58
59
# quick-lint-js finds bugs in JavaScript programs.
0 commit comments