Home | History | Annotate | Download | only in python

Lines Matching refs:protoc

19 if os.path.exists("../src/protoc"):
20 protoc = "../src/protoc"
21 elif os.path.exists("../src/protoc.exe"):
22 protoc = "../src/protoc.exe"
24 protoc = find_executable("protoc")
42 if protoc == None:
44 "protoc is not installed nor found in ../src. Please compile it "
48 protoc_command = [ protoc, "-I../src", "-I.", "--python_out=.", source ]