Fix cross compiling benchmarks

This commit is contained in:
Miodrag Milanovic 2021-06-22 14:42:42 +02:00
parent 69cb6f828c
commit 1c0852d3d4
4 changed files with 8 additions and 8 deletions

View file

@ -24,7 +24,7 @@
#include "internal_macros.h"
#ifdef BENCHMARK_OS_WINDOWS
#include <Windows.h>
#include <windows.h>
#endif
namespace benchmark {

View file

@ -20,7 +20,7 @@
#include "internal_macros.h"
#ifdef BENCHMARK_OS_WINDOWS
#include <Windows.h>
#include <windows.h>
#endif
namespace benchmark {

View file

@ -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>

View file

@ -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>