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 515b87b commit 29e744fCopy full SHA for 29e744f
benchmark/checkperf.cmake
@@ -93,5 +93,9 @@ if (SIMDJSON_IS_UNDER_GIT AND Git_FOUND AND (GIT_VERSION_STRING VERSION_GREATER
93
set_property(TEST checkperf APPEND PROPERTY DEPENDS parse perfdiff ${SIMDJSON_USER_CMAKECACHE})
94
set_property(TEST checkperf PROPERTY RUN_SERIAL TRUE)
95
else()
96
- message(STATUS "Either git is unavailable or else it is too old. We are disabling checkperf targets.")
+ if (CMAKE_GENERATOR MATCHES Ninja)
97
+ message(STATUS "We disable the checkperf targets under Ninja.")
98
+ else()
99
+ message(STATUS "Either git is unavailable or else it is too old. We are disabling checkperf targets.")
100
+ endif()
101
endif ()
0 commit comments