0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-27 00:31:02 +08:00

#0 Windows build

This commit is contained in:
Victor Zarubkin 2017-11-09 23:56:46 +03:00
parent bdb9e546b3
commit e0190fe7a3
3 changed files with 10 additions and 2 deletions

View File

@ -61,7 +61,6 @@
#include <chrono>
#include <unordered_map>
#include <easy/profiler.h>
#include <easy/easy_socket.h>
#include "profile_manager.h"
#include "current_time.h"

View File

@ -57,7 +57,10 @@
#include <easy/arbitrary_value.h>
#include <easy/serialized_block.h>
#include <easy/easy_net.h>
#include <easy/easy_socket.h>
#ifndef _WIN32
# include <easy/easy_socket.h>
#endif
#include "event_trace_win.h"
#include "current_time.h"

View File

@ -45,6 +45,12 @@ The Apache License, Version 2.0 (the "License");
#include <easy/details/profiler_public_types.h>
#ifdef _WIN32
// Do not move this include to other place!
// It should be included before Windows.h which is included in spin_lock.h
# include <easy/easy_socket.h>
#endif // _WIN32
#include "spin_lock.h"
#include "outstream.h"
#include "hashed_cstr.h"