()
| 62 | os.mkdir( extlib_dir ) |
| 63 | |
| 64 | def Check3rdPath(): |
| 65 | for lib in third_party_list: |
| 66 | path_list=GetPathPrefix(lib) |
| 67 | for path in path_list: |
| 68 | if( not os.path.exists( path[1] ) ): |
| 69 | print "%s not found" % path[1] |
| 70 | print "please make sure %s has been placed on the third party directory" % lib |
| 71 | exit(1) |
| 72 | |
| 73 | def CheckProtobufVersion(): |
| 74 | protobuf_bin_path = base_dir + "/third_party/protobuf/bin" |
no test coverage detected