Skip to content
Snippets Groups Projects
Commit 651bdc45 authored by Petteri Aimonen's avatar Petteri Aimonen
Browse files

Merge branch 'master' of github.com:nanopb/nanopb

parents 25210ac1 90c7269b
No related branches found
No related tags found
No related merge requests found
......@@ -42,16 +42,16 @@ if(nanopb_BUILD_GENERATOR)
)
foreach(generator_proto IN LISTS generator_protos)
string(REGEX REPLACE "([^;]+)" "generator/proto/\\1.proto" generator_proto_file "${generator_proto}")
string(REGEX REPLACE "([^;]+)" "${PROJECT_SOURCE_DIR}/generator/proto/\\1.proto" generator_proto_file "${generator_proto}")
string(REGEX REPLACE "([^;]+)" "\\1_pb2.py" generator_proto_py_file "${generator_proto}")
add_custom_command(
OUTPUT ${generator_proto_py_file}
COMMAND protoc --python_out=${CMAKE_CURRENT_BINARY_DIR} -Igenerator/proto ${generator_proto_file}
COMMAND protoc --python_out=${PROJECT_BINARY_DIR} -I${PROJECT_SOURCE_DIR}/generator/proto ${generator_proto_file}
DEPENDS ${generator_proto_file}
)
add_custom_target("generate_${generator_proto_py_file}" ALL DEPENDS ${generator_proto_py_file})
install(
FILES ${generator_proto_py_file}
FILES ${PROJECT_BINARY_DIR}/${generator_proto_py_file}
DESTINATION ${PYTHON_INSTDIR}
)
endforeach()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment