Files
bs_explorer/app/CMakeLists.txt
François Dausseur a8e7599b96 added ftdi on linux
2025-02-12 12:37:38 +01:00

13 lines
189 B
CMake

file(GLOB_RECURSE ALL_SOURCES "src/*.c")
# Application configuration
add_executable(
bs
${ALL_SOURCES}
)
# linking configuration
target_link_libraries(
bs PRIVATE jtag_core
)