
file(GLOB_RECURSE ALL_SOURCES "src/*.c")

# Application configuration
add_executable(
    bs
    ${ALL_SOURCES}
)

include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src)

# linking configuration
target_link_libraries(
    bs PRIVATE jtag_core
)