diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-28 14:43:16 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-28 14:43:16 +0200 |
commit | a14d696bdbc72754e8019fa9579d5a338cc85a05 (patch) | |
tree | 2533a574e03a9954b9eeaf7750219d3175ce8b99 /cmake/FindProtobufC.cmake | |
parent | d37add0f20c93432c0b4c12866810c124a7a18ec (diff) | |
download | ouroboros-a14d696bdbc72754e8019fa9579d5a338cc85a05.tar.gz ouroboros-a14d696bdbc72754e8019fa9579d5a338cc85a05.zip |
lib: Update irm.h API
Removes rina_name_t from that API. Passing ap_name and api_id as
params instead. The IRM tool has been updated accordingly. Some errors
in the build related to protobuf-c have also been resolved.
Diffstat (limited to 'cmake/FindProtobufC.cmake')
-rw-r--r-- | cmake/FindProtobufC.cmake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/FindProtobufC.cmake b/cmake/FindProtobufC.cmake index cae9f1c3..bfa50110 100644 --- a/cmake/FindProtobufC.cmake +++ b/cmake/FindProtobufC.cmake @@ -24,11 +24,11 @@ function(PROTOBUF_GENERATE_C SRCS HDRS) get_filename_component(ABS_FIL ${FIL} ABSOLUTE) get_filename_component(FIL_WE ${FIL} NAME_WE) - list(APPEND ${SRCS} "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}.pb-c.cc") + list(APPEND ${SRCS} "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}.pb-c.c") list(APPEND ${HDRS} "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}.pb-c.h") add_custom_command( - OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}.pb-c.cc" + OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}.pb-c.c" "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}.pb-c.h" COMMAND ${PROTOBUF_PROTOC_C_EXECUTABLE} ARGS --c_out=${CMAKE_CURRENT_BINARY_DIR} ${_protobuf_include_path} ${ABS_FIL} |