API: Add dependency on compiler for API .json and .api generation. 83/16283/2
authorOle Troan <ot@cisco.com>
Thu, 29 Nov 2018 19:14:33 +0000 (20:14 +0100)
committerNeale Ranns <nranns@cisco.com>
Fri, 30 Nov 2018 08:22:39 +0000 (08:22 +0000)
Add dependency on the API compiler, so that builds can deal with changes to the tool.

Change-Id: I2587235fefa93a69955495870d49f36b4203bfea
Signed-off-by: Ole Troan <ot@cisco.com>
src/cmake/api.cmake

index 415eb5e..dac2a7d 100644 (file)
@@ -24,7 +24,7 @@ function(vpp_generate_api_c_header file)
     COMMAND mkdir -p ${output_dir}
     COMMAND ${VPP_APIGEN}
     ARGS --includedir ${CMAKE_SOURCE_DIR} --input ${CMAKE_CURRENT_SOURCE_DIR}/${file} --output ${output_name}
-    DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${file}
+    DEPENDS ${VPP_APIGEN} ${CMAKE_CURRENT_SOURCE_DIR}/${file}
     COMMENT "Generating API header ${output_name}"
   )
 endfunction()
@@ -39,7 +39,7 @@ function(vpp_generate_api_json_header file dir component)
     COMMAND mkdir -p ${output_dir}
     COMMAND ${VPP_APIGEN}
     ARGS --includedir ${CMAKE_SOURCE_DIR} --input ${CMAKE_CURRENT_SOURCE_DIR}/${file} JSON --output ${output_name}
-    DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${file}
+    DEPENDS ${VPP_APIGEN} ${CMAKE_CURRENT_SOURCE_DIR}/${file}
     COMMENT "Generating API header ${output_name}"
   )
   install(