find_package(Threads REQUIRED)

add_executable(enyx-probes-read
    main.cpp)

target_link_libraries(enyx-probes-read
        enyx-cores
        enyx-hw
        Threads::Threads)

install(
    TARGETS
        enyx-probes-read
    DESTINATION
        ${CMAKE_INSTALL_BINDIR})
