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: always include NGSI node-type

This commit is contained in:
Steffen Vogel 2019-03-26 14:05:06 +01:00
parent 5a8f36313d
commit 18d6ab49d3

View file

@ -85,11 +85,9 @@ if(LIBZMQ_FOUND AND WITH_IO)
endif()
# Enable NGSI support
if(CURL_FOUND)
list(APPEND NODE_SRC ngsi.c)
list(APPEND INCLUDE_DIRS ${CURL_INCLUDE_DIRS})
list(APPEND LIBRARIES ${CURL_LIBRARIES})
endif()
list(APPEND NODE_SRC ngsi.c)
list(APPEND INCLUDE_DIRS ${CURL_INCLUDE_DIRS})
list(APPEND LIBRARIES ${CURL_LIBRARIES})
# Enable WebSocket support
if(LIBWEBSOCKETS_FOUND AND WITH_WEB AND WITH_IO)