diff options
author | Naios <naios-dev@live.de> | 2016-04-16 13:02:49 +0200 |
---|---|---|
committer | Naios <naios-dev@live.de> | 2016-04-16 22:07:07 +0200 |
commit | 5fa7127927a78802a8fcfdd822f0632665609231 (patch) | |
tree | dcc59a166e200b70fdfe7f364e9f45ba05c1b638 /contrib | |
parent | 37a79bde975aeb95d512cd172e8de0a799b8530e (diff) |
Core/Proto: Convert the proto project to a standalone shared library
* Fixes issues with dynamic linking on linux
* Closes #16981
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/protoc-bnet/generate_sources.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/protoc-bnet/generate_sources.bat b/contrib/protoc-bnet/generate_sources.bat index 60cd028a402..7e688c37013 100644 --- a/contrib/protoc-bnet/generate_sources.bat +++ b/contrib/protoc-bnet/generate_sources.bat @@ -1,6 +1,6 @@ FOR %%P IN (proto\global_extensions\*.proto) DO ( - protoc.exe --plugin=protoc-gen-bnet=protoc-gen-bnet.exe --bnet_out=dllexport_decl=TC_SHARED_API:buildproto -Iproto %%P + protoc.exe --plugin=protoc-gen-bnet=protoc-gen-bnet.exe --bnet_out=dllexport_decl=TC_PROTO_API:buildproto -Iproto %%P ) FOR %%P IN (proto\*.proto) DO ( - protoc.exe --plugin=protoc-gen-bnet=protoc-gen-bnet.exe --bnet_out=dllexport_decl=TC_SHARED_API:buildproto -Iproto %%P + protoc.exe --plugin=protoc-gen-bnet=protoc-gen-bnet.exe --bnet_out=dllexport_decl=TC_PROTO_API:buildproto -Iproto %%P ) |