Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ option(HOLOLINK_BUILD_PVA "Build PVA CRC components" OFF)
option(HOLOLINK_BUILD_CPACK "Build DEB package" OFF)
option(HOLOLINK_BUILD_EXPORT "Install Hololink targets" ON)
option(HOLOLINK_BUILD_ROCE "Build Hololink with RoCE support" ON)
option(HOLOLINK_BUILD_GPUNETIO_ROCE "Build DOCA GPUNetIO RoCE transceiver (requires DOCA gpunetio/verbs)" ON)
option(HOLOLINK_BUILD_SOCKET "Build Hololink with Linux Socket support" ON)

if (HOLOLINK_BUILD_PYTHON AND NOT HOLOLINK_BUILD_EMULATOR)
Expand Down
4 changes: 3 additions & 1 deletion src/hololink/operators/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ endif()
if (HOLOLINK_BUILD_ROCE)
add_subdirectory(roce_receiver)
add_subdirectory(roce_transmitter)
add_subdirectory(gpu_roce_transceiver)
if(HOLOLINK_BUILD_GPUNETIO_ROCE)
add_subdirectory(gpu_roce_transceiver)
endif()
add_subdirectory(sig_gen)
add_subdirectory(sig_viewer)
endif() # HOLOLINK_BUILD_ROCE
Expand Down