Skip to content

Commit 0e55e0a

Browse files
committed
Fixed some obsolete protobuf library paths
1 parent 67b9515 commit 0e55e0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.vscode/c_cpp_properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"name": "Linux",
55
"includePath": [
66
"${workspaceFolder}/**",
7-
"${workspaceFolder}/third_party/protobuf-*/src",
7+
"${workspaceFolder}/third_party/protobuf/src",
88
"/usr/include/postgresql",
99
"/usr/include/postgresql/11/server"
1010
],

build-protobuf-library.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PROTOBUF_VERSION=3.11.2
55

66
cd "$(dirname "${0}")"
77

8-
rm -Rf third_party/protobuf-*
8+
rm -Rf third_party/protobuf-* third_party/protobuf
99
mkdir -p third_party/
1010
cd third_party
1111
curl -L "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOBUF_VERSION}/protobuf-cpp-${PROTOBUF_VERSION}.tar.gz" | tar xzf -

0 commit comments

Comments
 (0)