在google protocol buffer编译时提示缺失:well_known_types_embed.cc。既然缺失那就补呗…
在src\google\protobuf\compiler\js目录下新建well_known_types_embed.cc文件,内容如下:
#include <google/protobuf/compiler/js/well_known_types_embed.h>
struct FileToc well_known_types_js[] = {
{NULL, NULL} // Terminate the list.
};
再次编译,搞定