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:
parent
d8e2d6a2f9
commit
36bffd8f53
1 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue