mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2024-10-30 21:20:10 +00:00
11 lines
406 B
Batchfile
11 lines
406 B
Batchfile
SET PROTOBUF_X86_DIRECTORY=..\vcpkg\packages\protobuf_x86-windows-static
|
|
SET PROTOBUF_X64_DIRECTORY=..\vcpkg\packages\protobuf_x64-windows-static
|
|
rem location of protoc in protobuf directories:
|
|
SET PROTOC_DIRECTORY=\tools\protobuf\protoc.exe
|
|
|
|
if exist "%PROTOBUF_X64_DIRECTORY%\lib\libprotobuf-lite.lib" (
|
|
SET PROTOBUF_LIBRARY=\lib\libprotobuf-lite.lib
|
|
) else (
|
|
SET PROTOBUF_LIBRARY=\lib\libprotobuf.lib
|
|
)
|