Skip to content

Commit

Permalink
Added gRPC server implementation, stub client API
Browse files Browse the repository at this point in the history
  • Loading branch information
KimihikoAkayasaki committed Nov 1, 2022
1 parent b8a1fb8 commit b79d379
Show file tree
Hide file tree
Showing 19 changed files with 12,973 additions and 7,905 deletions.
4 changes: 3 additions & 1 deletion Amethyst_API/Amethyst_API.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<ConformanceMode>true</ConformanceMode>
<PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
<AdditionalIncludeDirectories>$(SolutionDir)external\protobuf\src;$(SolutionDir)external\Kinect;$(SolutionDir)external\openvr\headers;$(SolutionDir)external\eigen;$(SolutionDir)external\vendor;$(ProjectDir)Generated Files;$(ProjectDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalIncludeDirectories>$(SolutionDir)external\Kinect;$(SolutionDir)external\openvr\headers;$(SolutionDir)external\vendor;$(ProjectDir)Generated Files;$(ProjectDir);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<LanguageStandard>stdcpp20</LanguageStandard>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
</ClCompile>
Expand Down Expand Up @@ -119,13 +119,15 @@
<ClInclude Include="Amethyst_API.h" />
<ClInclude Include="Amethyst_API_Devices.h" />
<ClInclude Include="Amethyst_API_Paths.h" />
<ClInclude Include="Generated Files\Amethyst_API.grpc.pb.h" />
<ClInclude Include="Generated Files\Amethyst_API.pb.h" />
<ClInclude Include="pch.h" />
<ClInclude Include="resource.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="dllmain.cpp" />
<ClCompile Include="Amethyst_API.cpp" />
<ClCompile Include="Generated Files\Amethyst_API.grpc.pb.cc" />
<ClCompile Include="Generated Files\Amethyst_API.pb.cc" />
<ClCompile Include="pch.cpp">
<PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
Expand Down
6 changes: 6 additions & 0 deletions Amethyst_API/Amethyst_API.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@
<ClInclude Include="Generated Files\Amethyst_API.pb.h">
<Filter>Generated Files</Filter>
</ClInclude>
<ClInclude Include="Generated Files\Amethyst_API.grpc.pb.h">
<Filter>Generated Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="dllmain.cpp">
Expand All @@ -59,6 +62,9 @@
<ClCompile Include="Generated Files\Amethyst_API.pb.cc">
<Filter>Generated Files</Filter>
</ClCompile>
<ClCompile Include="Generated Files\Amethyst_API.grpc.pb.cc">
<Filter>Generated Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="Resource.rc">
Expand Down
520 changes: 520 additions & 0 deletions Amethyst_API/Generated Files/Amethyst_API.grpc.pb.cc

Large diffs are not rendered by default.

2,243 changes: 2,243 additions & 0 deletions Amethyst_API/Generated Files/Amethyst_API.grpc.pb.h

Large diffs are not rendered by default.

Loading

0 comments on commit b79d379

Please sign in to comment.