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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.8 KiB
Text
Raw Permalink Normal View History

2018-06-21 09:36:49 +02:00
# CMakeLists.
#
# Author: Steffen Vogel <post@steffenvogel.de>
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
2018-06-21 09:36:49 +02:00
if(DEFINED PROTOBUF_COMPILER AND PROTOBUF_FOUND)
add_custom_command(
OUTPUT
villas.pb.cc villas.pb.h
message.js sample.js timestamp.js value.js
COMMAND ${PROTOBUF_COMPILER}
--js_out=${CMAKE_CURRENT_BINARY_DIR}
--cpp_out=${CMAKE_CURRENT_BINARY_DIR}
villas.proto
MAIN_DEPENDENCY villas.proto
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
endif()
if(DEFINED PROTOBUFC_COMPILER AND PROTOBUFC_FOUND)
add_custom_command(
OUTPUT
villas.pb-c.c villas.pb-c.h
2018-07-19 14:52:39 +02:00
COMMAND ${PROTOBUFC_COMPILER}
--c_out=${CMAKE_CURRENT_BINARY_DIR}
villas.proto
COMMAND ${CMAKE_COMMAND} -E copy
${CMAKE_CURRENT_BINARY_DIR}/villas.pb-c.h
${CMAKE_BINARY_DIR}/include/villas/formats/villas.pb-c.h
MAIN_DEPENDENCY villas.proto
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
2018-06-21 09:36:49 +02:00
list(APPEND FORMAT_SRC
2019-04-07 15:13:40 +02:00
protobuf.cpp
2018-06-21 09:36:49 +02:00
${CMAKE_CURRENT_BINARY_DIR}/villas.pb-c.c
)
list(APPEND INCLUDE_DIRS
${CMAKE_CURRENT_BINARY_DIR}
)
list(APPEND LIBRARIES
PkgConfig::PROTOBUFC
2018-06-21 09:36:49 +02:00
)
endif()
list(APPEND FORMAT_SRC
2021-05-10 00:12:30 +02:00
column.cpp
iotagent_ul.cpp
json_edgeflex.cpp
json_kafka.cpp
2021-05-10 00:12:30 +02:00
json_reserve.cpp
json.cpp
line.cpp
2019-04-07 15:13:40 +02:00
msg.cpp
opal_asyncip.cpp
2021-05-10 00:12:30 +02:00
raw.cpp
value.cpp
2021-05-10 00:12:30 +02:00
villas_binary.cpp
villas_human.cpp
)
add_library(formats STATIC ${FORMAT_SRC})
target_include_directories(formats PUBLIC ${INCLUDE_DIRS})
2020-06-14 15:02:16 +02:00
target_link_libraries(formats PUBLIC ${LIBRARIES})