diff options
author | 2021-06-22 14:42:42 +0200 | |
---|---|---|
committer | 2021-06-22 14:42:42 +0200 | |
commit | 1c0852d3d473d694b3d74e05f4b4f12793530729 (patch) | |
tree | 55a86a2a5894952a2fc0c3732e75ccd8182e6d0c | |
parent | 69cb6f828ca212c8b1081b643b1c2352b27c3a30 (diff) |
Fix cross compiling benchmarks
-rw-r--r-- | 3rdparty/benchmark/src/colorprint.cc | 2 | ||||
-rw-r--r-- | 3rdparty/benchmark/src/sleep.cc | 2 | ||||
-rw-r--r-- | 3rdparty/benchmark/src/sysinfo.cc | 6 | ||||
-rw-r--r-- | 3rdparty/benchmark/src/timers.cc | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/3rdparty/benchmark/src/colorprint.cc b/3rdparty/benchmark/src/colorprint.cc index b7d316fea39..4e4ad51b8fc 100644 --- a/3rdparty/benchmark/src/colorprint.cc +++ b/3rdparty/benchmark/src/colorprint.cc @@ -24,7 +24,7 @@ #include "internal_macros.h" #ifdef BENCHMARK_OS_WINDOWS -#include <Windows.h> +#include <windows.h> #endif namespace benchmark { diff --git a/3rdparty/benchmark/src/sleep.cc b/3rdparty/benchmark/src/sleep.cc index 918abc485dc..8f102d5402b 100644 --- a/3rdparty/benchmark/src/sleep.cc +++ b/3rdparty/benchmark/src/sleep.cc @@ -20,7 +20,7 @@ #include "internal_macros.h" #ifdef BENCHMARK_OS_WINDOWS -#include <Windows.h> +#include <windows.h> #endif namespace benchmark { diff --git a/3rdparty/benchmark/src/sysinfo.cc b/3rdparty/benchmark/src/sysinfo.cc index 483ea8a9e9c..28c8814ccc7 100644 --- a/3rdparty/benchmark/src/sysinfo.cc +++ b/3rdparty/benchmark/src/sysinfo.cc @@ -16,9 +16,9 @@ #include "internal_macros.h" #ifdef BENCHMARK_OS_WINDOWS -#include <Shlwapi.h> -#include <Windows.h> -#include <VersionHelpers.h> +#include <shlwapi.h> +#include <windows.h> +#include <versionhelpers.h> #else #include <fcntl.h> #include <sys/resource.h> diff --git a/3rdparty/benchmark/src/timers.cc b/3rdparty/benchmark/src/timers.cc index 95e6ceb55a9..772bb032499 100644 --- a/3rdparty/benchmark/src/timers.cc +++ b/3rdparty/benchmark/src/timers.cc @@ -16,9 +16,9 @@ #include "internal_macros.h" #ifdef BENCHMARK_OS_WINDOWS -#include <Shlwapi.h> -#include <VersionHelpers.h> -#include <Windows.h> +#include <shlwapi.h> +#include <versionhelpers.h> +#include <windows.h> #else #include <fcntl.h> #include <sys/resource.h> |