Lines Matching refs:protoc
24 protoc = os.environ['PROTOC']
25 elif os.path.exists("../src/protoc"):
26 protoc = "../src/protoc"
27 elif os.path.exists("../src/protoc.exe"):
28 protoc = "../src/protoc.exe"
29 elif os.path.exists("../vsprojects/Debug/protoc.exe"):
30 protoc = "../vsprojects/Debug/protoc.exe"
31 elif os.path.exists("../vsprojects/Release/protoc.exe"):
32 protoc = "../vsprojects/Release/protoc.exe"
34 protoc = find_executable("protoc")
68 if protoc is None:
70 "protoc is not installed nor found in ../src. Please compile it "
74 protoc_command = [ protoc, "-I../src", "-I.", "--python_out=.", source ]