mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
14 lines
287 B
CMake
14 lines
287 B
CMake
add_library(forwarder
|
|
${CMAKE_SOURCE_DIR}/include/forwarder/MessageForwarder.h
|
|
${CMAKE_SOURCE_DIR}/libsrc/forwarder/MessageForwarder.cpp
|
|
)
|
|
|
|
target_link_libraries(forwarder
|
|
hyperion
|
|
hyperion-utils
|
|
)
|
|
|
|
if(ENABLE_FLATBUF_CONNECT)
|
|
target_link_libraries(forwarder flatbufconnect)
|
|
endif()
|