Warning, /jana2/src/examples/InteractiveStreamingExample/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001
0002 if (${USE_ROOT} AND ${USE_ZEROMQ})
0003
0004 find_package(ZeroMQ REQUIRED)
0005 find_package(ROOT REQUIRED)
0006
0007 file(GLOB InteractiveStreamingExample_SOURCES "*.c*")
0008 file(GLOB InteractiveStreamingExample_HEADERS "*.h*")
0009
0010 add_jana_plugin(InteractiveStreamingExample
0011 SOURCES ${InteractiveStreamingExample_SOURCES}
0012 PUBLIC_HEADER ${InteractiveStreamingExample_HEADERS})
0013
0014 target_include_directories(InteractiveStreamingExample PUBLIC ${ZeroMQ_INCLUDE_DIRS})
0015 target_link_libraries(InteractiveStreamingExample PUBLIC ${ZeroMQ_LIBRARIES})
0016
0017 else()
0018
0019 message(STATUS "Skipping examples/InteractiveStreamingExample because USE_ROOT=Off or USE_ZEROMQ=Off")
0020
0021 endif()