diff options
author | Wouter van Oortmerssen <wvo@google.com> | 2014-09-16 17:37:17 -0700 |
---|---|---|
committer | Wouter van Oortmerssen <wvo@google.com> | 2014-09-18 12:29:31 -0700 |
commit | 557c88c0396220e79e9a43c07f8393a5c68b739d (patch) | |
tree | 1e837db4c944197b63dd7a6547ae5eb0adc166d4 /build | |
parent | d01b30cdd688166caa93df67546191543892453a (diff) | |
download | flatbuffers-557c88c0396220e79e9a43c07f8393a5c68b739d.tar.gz flatbuffers-557c88c0396220e79e9a43c07f8393a5c68b739d.tar.bz2 flatbuffers-557c88c0396220e79e9a43c07f8393a5c68b739d.zip |
Refactored the Java and C# code generators into one.
Also made the C# implementation support unsigned types, and
made it more like the Java version.
Bug: 17359988
Change-Id: If5305c08cd5c97f35426639516ce05e53bbec36c
Tested: on Linux and Windows.
Diffstat (limited to 'build')
-rwxr-xr-x | build/VS2010/flatc.vcxproj | 3 | ||||
-rwxr-xr-x | build/VS2010/flatc.vcxproj.user | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/build/VS2010/flatc.vcxproj b/build/VS2010/flatc.vcxproj index 1e2b44ab..2f9c33ff 100755 --- a/build/VS2010/flatc.vcxproj +++ b/build/VS2010/flatc.vcxproj @@ -266,13 +266,12 @@ <ClInclude Include="..\..\include\flatbuffers\flatbuffers.h" /> <ClInclude Include="..\..\include\flatbuffers\idl.h" /> <ClInclude Include="..\..\include\flatbuffers\util.h" /> - <ClCompile Include="..\..\src\idl_gen_csharp.cpp" /> + <ClCompile Include="..\..\src\idl_gen_general.cpp" /> <ClCompile Include="..\..\src\idl_gen_go.cpp"> <WarningLevel Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Level4</WarningLevel> </ClCompile> <ClCompile Include="..\..\src\idl_parser.cpp" /> <ClCompile Include="..\..\src\idl_gen_cpp.cpp" /> - <ClCompile Include="..\..\src\idl_gen_java.cpp" /> <ClCompile Include="..\..\src\idl_gen_text.cpp" /> <ClCompile Include="..\..\src\flatc.cpp" /> </ItemGroup> diff --git a/build/VS2010/flatc.vcxproj.user b/build/VS2010/flatc.vcxproj.user index f86bf482..26953575 100755 --- a/build/VS2010/flatc.vcxproj.user +++ b/build/VS2010/flatc.vcxproj.user @@ -11,7 +11,7 @@ <LocalDebuggerCommandArguments>-j -c -n -g -b -t monster_test.fbs monsterdata_test.golden</LocalDebuggerCommandArguments> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> - <LocalDebuggerCommandArguments>-j -c -g -b -t monster_test.fbs monsterdata_test.golden</LocalDebuggerCommandArguments> + <LocalDebuggerCommandArguments>-j -c -g -n -b -t monster_test.fbs monsterdata_test.golden</LocalDebuggerCommandArguments> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> <LocalDebuggerWorkingDirectory>..\..\tests</LocalDebuggerWorkingDirectory> |