1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

cmake: check for paste tool (closes #275)

This commit is contained in:
Steffen Vogel 2020-09-03 14:57:19 +02:00
parent d8e2d6a2f9
commit 36bffd8f53

View file

@ -87,6 +87,12 @@ find_package(RDMACM)
find_package(spdlog)
find_package(Etherlab)
# Check for tools
find_program(PASTE NAMES paste)
if(NOT PASTE)
message(SEND_ERROR "GNU paste is missing. Please install coreutils")
endif()
# Check programs
find_program(PROTOBUFC_COMPILER NAMES protoc-c)
find_program(PROTOBUF_COMPILER NAMES protoc)