summaryrefslogtreecommitdiffstats
path: root/v3po/api/src
AgeCommit message (Expand)AuthorFilesLines
2016-07-14HONEYCOMB-49: VPP classifier model. Initial versionMarek Gradzki4-0/+255
2016-07-01HONEYCOMB-104: add Ipv4 support to sub-interfacesMarek Gradzki1-0/+134
2016-06-15HONEYCOMB-91: updated POSTMAN collection with L2 FIB supportMarek Gradzki1-1/+1
2016-06-15HONEYCOMB-91: write customizer for L2FibEntryMarek Gradzki1-3/+10
2016-06-15HONEYCOMB-91: BD and L2 FIB YANG model refactoringMarek Gradzki1-44/-146/+129
2016-05-24HONEYCOMB-61: Fix outstanding issuesMaros Marsalek1-1/+2
2016-05-23HONEYCOMB-61: Move vpp context model to v3po-apiMaros Marsalek1-0/+41
2016-05-19HONEYCOMB-48: added VLAN support to v3po.yangMarek Gradzki1-0/2016-04-12HONEYCOMB-9: Migrate Interface listenerMaros Marsalek1-0/+5
2016-01-30Split out interesting bits of v3po.yangRobert Varga1-48/+54
2016-01-30Initial honeycomb code commit.Ed Warnicke2-0/+1108
/span> DESTINATION share/vpp/api/${dir}/ COMPONENT ${component} ) endfunction() ############################################################################## # generate the .h and .json files for a .api file # @param file - the name of the .api # @param dir - the install directory under ROOT/share/vpp/api to place the # generated .json file ############################################################################## function(vpp_generate_api_header file dir component) vpp_generate_api_c_header (${file}) vpp_generate_api_json_header (${file} ${dir} ${component}) endfunction() function(vpp_add_api_files name) unset(header_files) set(target ${name}_api_headers) file(RELATIVE_PATH rpath ${CMAKE_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}) foreach(file ${ARGN}) vpp_generate_api_header (${file} core vpp) list(APPEND header_files ${file}.h ${file}.json) set_property(GLOBAL APPEND PROPERTY VPP_API_FILES ${rpath}/${file}) endforeach() add_custom_target(${target} DEPENDS ${header_files}) endfunction() add_custom_target(api_headers DEPENDS vlibmemory_api_headers vnet_api_headers vpp_api_headers )