diff options
author | Damjan Marion <damarion@cisco.com> | 2021-05-25 19:28:21 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2021-05-27 20:53:50 +0000 |
commit | 7cf80af582a12fba4b547b1f2b01c27b8295f84c (patch) | |
tree | 8649b130b4c8f0c179232c10a7d5bee71f08097d /src/cmake/api.cmake | |
parent | 9303b10897324d5af1645ed3069303328221dd93 (diff) |
build: kindly ask python not to polute src/
Type: make
Change-Id: I1ec82e0f3c19dee79f942996339240c73d4e380c
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/cmake/api.cmake')
-rw-r--r-- | src/cmake/api.cmake | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cmake/api.cmake b/src/cmake/api.cmake index 007a9060023..831c2b1e32d 100644 --- a/src/cmake/api.cmake +++ b/src/cmake/api.cmake @@ -38,7 +38,7 @@ function(vpp_generate_api_c_header file) add_custom_command ( OUTPUT ${OUTPUT_HEADERS} COMMAND mkdir -p ${output_dir} - COMMAND ${VPP_APIGEN} + COMMAND ${PYENV} ${VPP_APIGEN} ARGS ${includedir} --includedir ${CMAKE_SOURCE_DIR} --input ${CMAKE_CURRENT_SOURCE_DIR}/${file} --outputdir ${output_dir} --output ${output_name} DEPENDS ${VPP_APIGEN} ${CMAKE_CURRENT_SOURCE_DIR}/${file} COMMENT "Generating API header ${output_name}" @@ -63,7 +63,7 @@ function(vpp_generate_api_json_header file dir component) endif() add_custom_command (OUTPUT ${output_name} COMMAND mkdir -p ${output_dir} - COMMAND ${VPP_APIGEN} + COMMAND ${PYENV} ${VPP_APIGEN} ARGS ${includedir} --includedir ${CMAKE_SOURCE_DIR} --input ${CMAKE_CURRENT_SOURCE_DIR}/${file} JSON --output ${output_name} DEPENDS ${VPP_APIGEN} ${CMAKE_CURRENT_SOURCE_DIR}/${file} COMMENT "Generating API header ${output_name}" @@ -94,7 +94,7 @@ function(vpp_generate_vapi_c_header f) add_custom_command( OUTPUT ${output_name} WORKING_DIRECTORY ${VPP_BINARY_DIR}/vpp-api/vapi - COMMAND ${VPP_VAPI_C_GEN} + COMMAND ${PYENV} ${VPP_VAPI_C_GEN} ARGS --remove-path ${input} DEPENDS ${input} ${VPP_VAPI_C_GEN_DEPENDS} COMMENT "Generating VAPI C header ${output_name}" @@ -121,7 +121,7 @@ function (vpp_generate_vapi_cpp_header f) add_custom_command( OUTPUT ${output_name} WORKING_DIRECTORY ${VPP_BINARY_DIR}/vpp-api/vapi - COMMAND ${VPP_VAPI_CPP_GEN} + COMMAND ${PYENV} ${VPP_VAPI_CPP_GEN} ARGS --gen-h-prefix=vapi --remove-path ${input} DEPENDS ${input} ${VPP_VAPI_CPP_GEN_DEPENDS} COMMENT "Generating VAPI C++ header ${output_name}" |