add_executable(enyx-i2c-tester
               main.cpp)

target_link_libraries(enyx-i2c-tester
    PRIVATE
        Boost::program_options
        enyx-cores
        enyx-cores-tools
        enyx-hw
        rt)

target_compile_definitions(enyx-i2c-tester
    PRIVATE
        "BIN_NAME=\"$<TARGET_FILE_NAME:enyx-i2c-tester>\"")

install(TARGETS
        enyx-i2c-tester
    DESTINATION
        ${CMAKE_INSTALL_FULL_BINDIR})
