Skip to content

Commit

Permalink
Change order of conan dependency to fix Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
pierricgimmig committed Oct 4, 2023
1 parent 3e1d053 commit e96014a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def config_options(self):

def build_requirements(self):
if self.options.with_system_deps: return
self.build_requires('protobuf/3.21.4')
self.build_requires('grpc/1.48.0')
self.build_requires('protobuf/3.21.4')
self.build_requires('gtest/1.11.0', force_host_context=True)

def requirements(self):
Expand Down
2 changes: 2 additions & 0 deletions src/Api/Orbit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
#include "ApiUtils/ApiEnableInfo.h"
#endif

// Kick build.

namespace {
orbit_api::LockFreeApiEventProducer& GetCaptureEventProducer() {
static orbit_api::LockFreeApiEventProducer producer;
Expand Down

0 comments on commit e96014a

Please sign in to comment.